diff --git a/CLI.Dockerfile b/CLI.Dockerfile index 66e5da3..1801b43 100644 --- a/CLI.Dockerfile +++ b/CLI.Dockerfile @@ -7,11 +7,13 @@ ENV API_URL "${API_URL}" RUN apt-get update && apt-get install -y --no-install-recommends cron rsyslog nano && rm -r /var/lib/apt/lists/* RUN pecl install xdebug-3.4.2 \ - && docker-php-ext-enable xdebug + && docker-php-ext-enable xdebug \ + && echo $TZ > /etc/timezone COPY --chmod=550 ./cli/entrypoint /root/entrypoint COPY ./php-errors.ini /usr/local/etc/php/conf.d/docker-php-errors.ini +COPY ./php-timezone.ini /usr/local/etc/php/conf.d/docker-php-timezone.ini WORKDIR /code/bin