fix: updates local deploy compose

This commit is contained in:
2025-05-24 23:13:21 -05:00
parent e85ae5ac95
commit c763d67fcb
9 changed files with 186 additions and 44 deletions

View File

@@ -1,4 +1,4 @@
FROM dunglas/frankenphp
FROM dunglas/frankenphp:php8.4-alpine
ENV SERVER_NAME=":80"
ENV CADDY_GLOBAL_OPTIONS="auto_https off"
@@ -9,8 +9,10 @@ RUN install-php-extensions \
gd \
intl \
zip \
opcache \
opcache
COPY . /app
ENTRYPOINT [ "php", "/app/bin/console", "messenger:consume", "async", "-vv" ]
ENTRYPOINT [ "php", "/app/bin/console", "messenger:consume", "async" ]
HEALTHCHECK --interval=3s --timeout=3s --retries=10 CMD return 0