Reworked mysql image to better work as a base

This commit is contained in:
Deon George 2018-01-29 15:23:52 +11:00
parent 39fdc2f940
commit 7ca57c02ab
1 changed files with 6 additions and 8 deletions

View File

@ -2,18 +2,16 @@
# VERSION 7.1-fpm-mysql
FROM php:7.1-fpm
RUN apt-get update \
&& docker-php-ext-install -j$(nproc) pdo_mysql \
&& rm -rf /var/lib/apt/lists/* /tmp/*
RUN apt-get update && apt-get install -y openssh-server && rm -rf /var/lib/apt/lists/* \
RUN apt-get update && apt-get install -y openssh-server && rm -rf /var/lib/apt/lists/* /tmp/* \
&& 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
EXPOSE 9000/tcp 22/tcp
COPY start /usr/local/sbin
ENTRYPOINT [ "/usr/local/sbin/start" ]
CMD ["php-fpm"]
CMD [ "php-fpm" ]
RUN docker-php-ext-install -j$(nproc) pdo_mysql