Files
torsearch/docker/Dockerfile.app
2025-05-23 21:55:41 -05:00

18 lines
387 B
Erlang

FROM dunglas/frankenphp
ENV FRANKENPHP_CONFIG="worker /app/public/index.php"
ENV SERVER_NAME=":80"
ENV CADDY_GLOBAL_OPTIONS="auto_https off"
ENV APP_RUNTIME="Runtime\\FrankenPhpSymfony\\Runtime"
RUN install-php-extensions \
pdo_mysql \
gd \
intl \
zip \
opcache
COPY . /app
HEALTHCHECK --interval=3s --timeout=3s --retries=10 CMD [ "php", "/app/bin/console", "startup:status" ]