17 lines
310 B
Docker
17 lines
310 B
Docker
FROM dunglas/frankenphp
|
|
|
|
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
|
|
|
|
ENTRYPOINT [ "php", "/app/bin/console", "messenger:consume", "async", "-vv" ]
|