You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
409 B
18 lines
409 B
FROM monica:3.7-apache
|
|
|
|
# Use the default production configuration
|
|
RUN mv "$PHP_INI_DIR/php.ini-production" "$PHP_INI_DIR/php.ini"
|
|
|
|
# supervisord dependencies
|
|
RUN set -ex; \
|
|
\
|
|
apt-get update; \
|
|
apt-get install -y --no-install-recommends \
|
|
supervisor \
|
|
; \
|
|
rm -rf /var/lib/apt/lists/*
|
|
|
|
COPY supervisord.conf /etc/supervisord.conf
|
|
|
|
CMD ["supervisord", "-c", "/etc/supervisord.conf"]
|