16 lines
320 B
Docker
16 lines
320 B
Docker
FROM monica:fpm-alpine
|
|
|
|
# Use the default production configuration
|
|
RUN mv "$PHP_INI_DIR/php.ini-production" "$PHP_INI_DIR/php.ini"
|
|
|
|
# supervisord dependencies
|
|
RUN set -ex; \
|
|
\
|
|
apk add --no-cache \
|
|
supervisor \
|
|
;
|
|
|
|
COPY supervisord.conf /etc/supervisord.conf
|
|
|
|
CMD ["supervisord", "-c", "/etc/supervisord.conf"]
|