Files
oficial/CLI.Dockerfile

21 lines
500 B
Docker
Raw 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}"
ENV API_URL "${API_URL}"
2023-11-25 01:14:28 -03:00
2024-02-10 10:37:45 -03:00
RUN apt-get update && apt-get install -y --no-install-recommends cron rsyslog nano && rm -r /var/lib/apt/lists/*
2023-11-25 00:56:18 -03:00
RUN pecl install xdebug-3.4.2 \
&& docker-php-ext-enable xdebug
COPY --chmod=550 ./cli/entrypoint /root/entrypoint
2023-11-25 00:56:18 -03:00
COPY ./php-errors.ini /usr/local/etc/php/conf.d/docker-php-errors.ini
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
2024-02-10 10:37:45 -03:00
CMD [ "/root/entrypoint" ]