Dockerfile re-enabled
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2021-09-12 17:07:33 +02:00
parent 91a6168583
commit 898acb76d3

View File

@@ -1,17 +1,17 @@
FROM monica:apache
# # Use the default production configuration
# RUN mv "$PHP_INI_DIR/php.ini-production" "$PHP_INI_DIR/php.ini"
# 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/*
# 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
COPY supervisord.conf /etc/supervisord.conf
# CMD ["supervisord", "-c", "/etc/supervisord.conf"]
CMD ["supervisord", "-c", "/etc/supervisord.conf"]