Added SSHD to the image with user lamp

This commit is contained in:
Deon George
2017-12-13 21:54:20 +11:00
parent d962df104e
commit fd6c550269
3 changed files with 38 additions and 0 deletions

View File

@@ -6,3 +6,13 @@ RUN echo "deb http://deb.debian.org/debian jessie non-free" >> /etc/apt/sources.
&& download-mibs \
&& docker-php-ext-configure gd --with-freetype-dir=/usr/include/freetype2 --with-jpeg-dir=/usr/include/ \
&& docker-php-ext-install -j$(nproc) pdo_mysql bz2 gettext sockets gmp gd pcntl snmp
RUN apt-get install -y openssh-server && useradd -c "Hosting Admin User" -u 1000 -g users -G www-data -d /var/www/html -M lamp
EXPOSE 9000/tcp 22/tcp
COPY sshd_config.patch /tmp
RUN (cd / && patch -p0 ) < /tmp/sshd_config.patch && rm /tmp/sshd_config.patch
COPY start /usr/local/sbin
ENTRYPOINT [ "/usr/local/sbin/start" ]
CMD ["php-fpm"]