diff --git a/Dockerfile b/Dockerfile index a860d44..8487897 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1 +1,17 @@ -FROM monica:apache \ No newline at end of file +FROM monica: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"] \ No newline at end of file diff --git a/Dockerfile.disabled b/Dockerfile.disabled deleted file mode 100644 index c86b479..0000000 --- a/Dockerfile.disabled +++ /dev/null @@ -1,17 +0,0 @@ -FROM monica: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"] \ No newline at end of file