From afb6e2526f9a8638a41c8535c5c2913a874b62d4 Mon Sep 17 00:00:00 2001 From: Juan Pablo Vial Date: Tue, 3 Jun 2025 20:14:15 -0400 Subject: [PATCH] FIX: Timezone cli --- CLI.Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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