Files
oficial/CLI.Dockerfile

23 lines
609 B
Docker
Raw Permalink Normal View History

FROM php:8.4-cli
2023-11-25 00:56:18 -03:00
2024-02-10 10:37:45 -03:00
ENV TZ "${TZ}"
ENV APP_NAME "${APP_NAME}"
2023-11-25 01:14:28 -03:00
RUN apt-get update && apt-get install -y --no-install-recommends cron rsyslog nano beanstalkd \
&& rm -r /var/lib/apt/lists/*
2023-11-25 00:56:18 -03:00
RUN pecl install xdebug-3.4.2 \
2024-02-10 10:37:45 -03:00
&& docker-php-ext-enable xdebug \
&& echo $TZ > /etc/timezone
COPY --chmod=550 ./cli/start_command /root/start_command
2023-11-25 00:56:18 -03:00
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
2023-11-25 00:56:18 -03:00
2023-11-29 23:07:50 -03:00
WORKDIR /code/bin
2023-11-25 00:56:18 -03:00
2024-02-10 10:37:45 -03:00
COPY --chmod=644 ./cli/crontab /var/spool/cron/crontabs/root
2023-11-25 00:56:18 -03:00
CMD [ "/root/start_command" ]