Needed a CHOWN

This commit is contained in:
Jeroen De Meerleer 2021-08-02 14:15:47 +02:00
parent 79b5c523ad
commit 6e96e1e731
Signed by: JeroenED
GPG Key ID: 28CCCB8F62BFADD6
1 changed files with 2 additions and 3 deletions

View File

@ -1,5 +1,3 @@
FROM composer:2 AS composer
FROM php:8.0-apache AS phpbuilder
RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer
WORKDIR /tmp/buildir/
@ -22,7 +20,7 @@ ENV WEBCRON_ROOT=/var/www/webcron/
ENV TZ=Europe/Brussels
USER www-data
COPY --from=nodebuilder /tmp/buildir/webcron ${WEBCRON_ROOT}
COPY --from=nodebuilder --chown=www-data:www-data /tmp/buildir/webcron ${WEBCRON_ROOT}
WORKDIR ${WEBCRON_ROOT}
USER root
@ -34,4 +32,5 @@ RUN docker-php-ext-install pcntl
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
RUN mv "$PHP_INI_DIR/php.ini-production" "$PHP_INI_DIR/php.ini"
RUN printf "[PHP]\ndate.timezone = \"$TZ\"\n" > /usr/local/etc/php/conf.d/tzone.ini
ENTRYPOINT service apache2 restart && php ${WEBCRON_ROOT}webcron daemon