27 lines
602 B
Docker
27 lines
602 B
Docker
FROM dunglas/frankenphp
|
|
|
|
RUN install-php-extensions \
|
|
pdo_mysql \
|
|
gd \
|
|
intl \
|
|
zip \
|
|
opcache
|
|
|
|
#RUN apk add --no-cache \
|
|
# php84-opcache \
|
|
# php84-pdo_mysql \
|
|
# php84-simplexml
|
|
#
|
|
#USER nobody
|
|
#
|
|
#COPY --chmod=0775 ./bash/entrypoint.sh /usr/local/bin/
|
|
#COPY --chmod=0755 ./bash/nginx.conf /etc/nginx/conf.d/site.conf
|
|
#COPY --chmod=0755 ./docker/app/supervisord.conf /etc/supervisor/conf.d/async-queue.conf
|
|
|
|
#HEALTHCHECK --interval=3s --timeout=3s --retries=10 CMD [ "php", "/var/www/bin/console", "startup:status" ]
|
|
#
|
|
#ENTRYPOINT [ "/usr/local/bin/entrypoint.sh" ]
|
|
#
|
|
#WORKDIR /var/www
|
|
|