Added gettext, testing for artisan and enabled migrate before starting

This commit is contained in:
Deon George
2019-05-03 12:09:47 +10:00
parent 2976938437
commit 2a35efec11
2 changed files with 13 additions and 10 deletions

View File

@@ -3,7 +3,8 @@
FROM php:7.2-fpm
RUN apt-get update && apt-get install -y openssh-server ssmtp libpq-dev unzip git libssl1.0-dev libldap-dev && rm -rf /var/lib/apt/lists/* /tmp/* \
RUN apt-get update && apt-get install -y openssh-server ssmtp libpq-dev unzip git libssl1.0-dev libldap-dev gettext \
&& 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 \
&& sed -i -e 's/^mailhub=mail$/mailhub=smtp/' -e "s/^hostname=/#hostname=/" -e 's/#FromLineOverride=YES/FromLineOverride=YES/' /etc/ssmtp/ssmtp.conf
@@ -12,9 +13,9 @@ RUN (cd / && patch -p0 ) < /tmp/sshd_config.patch && rm /tmp/sshd_config.patch
EXPOSE 9000/tcp 22/tcp
RUN docker-php-ext-install -j$(nproc) pdo_mysql pdo_pgsql ldap
RUN docker-php-ext-install -j$(nproc) pdo_mysql pdo_pgsql ldap gettext
RUN curl https://getcomposer.org/installer|php -- --install-dir=/usr/local/bin --filename=composer
COPY start /usr/local/sbin
ENTRYPOINT [ "/usr/local/sbin/start" ]
COPY init /sbin
ENTRYPOINT [ "/sbin/init" ]
CMD [ "php-fpm" ]