Fixed comments

This commit is contained in:
dave 2015-01-06 19:20:26 -08:00
parent cbf8a713ec
commit 5d54cf6a5d
1 changed files with 4 additions and 3 deletions

View File

@ -6,15 +6,16 @@ RUN useradd --create-home --groups sudo admin ; echo "admin:admin" | chpasswd ;
# ZNC user # ZNC user
RUN useradd --create-home znc ; echo "znc:znc" | chpasswd RUN useradd --create-home znc ; echo "znc:znc" | chpasswd
# Install bind and vim # Install sshd, znc, and znc extras
RUN mkdir /var/run/sshd ; apt-get update ; apt-get install -y supervisor vim openssh-server znc znc-python znc-dev dpkg-dev RUN mkdir /var/run/sshd ; apt-get update ; apt-get install -y supervisor vim openssh-server znc znc-python znc-dev dpkg-dev
# Get ZNC source # Get ZNC source
RUN su -c 'cd /home/znc ; apt-get source znc' znc RUN su -c 'cd /home/znc ; apt-get source znc' znc
# Install startup stuff
COPY daemons.conf /etc/supervisor/conf.d/daemons.conf COPY daemons.conf /etc/supervisor/conf.d/daemons.conf
COPY start /start COPY start /start
#EXPOSE 53/udp
EXPOSE 22
RUN chmod +x /start RUN chmod +x /start
EXPOSE 22