Remove sudo access

Not required by the application; debugging can be done with 'nsenter'
or 'docker-enter' - see https://github.com/jpetazzo/nsenter
This commit is contained in:
Nick Andrew 2014-11-17 01:29:49 +11:00
parent 25bbb48dcf
commit 28ba0e1398
2 changed files with 3 additions and 6 deletions

View file

@ -6,7 +6,7 @@ RUN apt-get update
# Install supervisor for managing services
RUN apt-get install -q -y supervisor cron openssh-server pwgen reprepro screen vim-tiny sudo nginx
RUN apt-get install -q -y supervisor cron openssh-server pwgen reprepro screen vim-tiny nginx
# Configure cron
@ -31,10 +31,8 @@ RUN echo "daemon off;" >> /etc/nginx/nginx.conf
RUN rm -f /etc/nginx/sites-enabled/default
ADD configs/nginx-default.conf /etc/nginx/sites-enabled/default
# Setup root & sudo access
# Setup root access
RUN echo "root:docker" | chpasswd
RUN echo %sudo ALL=NOPASSWD: ALL >> /etc/sudoers
# Configure supervisor
RUN service supervisor stop
@ -54,4 +52,3 @@ VOLUME ["/docker/keys", "/docker/incoming", "/repository"]
EXPOSE 80
EXPOSE 22
CMD ["/usr/local/sbin/start"]

View file

@ -8,7 +8,7 @@
# let's create a user to SSH into
SSH_USERPASS=`pwgen -c -n -1 8`
mkdir /home/user
useradd -G sudo -d /home/user -s /bin/bash user
useradd -d /home/user -s /bin/bash user
chown -R user /home/user
chown -R user /docker/incoming