diff --git a/README.md b/README.md index f234b4e..21a4d8f 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ This is a template for building a webapp using the following tech stack: Two different configurations are provided and instanced using the docker-related files in this template repository: - The [production configuration](#production-configuration) is used for preformance-optimized production deployments of your web application -- The [development configuration](#development-configuration) is used for development-deployments of your web application, providing features such as hot-reloading and debugging information +- The [development configuration](#development-configuration) is used during development of your web application, providing features such as hot-reloading and debugging information This should go without saying, but **do not serve the development configuration** on a public production server. diff --git a/production.frontend.Dockerfile b/production.frontend.Dockerfile index c97520b..c984b66 100644 --- a/production.frontend.Dockerfile +++ b/production.frontend.Dockerfile @@ -33,4 +33,4 @@ USER ${CUSTOM_UID:-1000}:${CUSTOM_GID:-1000} RUN npm install RUN npx parcel build frontend/src/html/index.html -ENTRYPOINT ["caddy", "run", "--config", "/app/production.Caddyfile"] +ENTRYPOINT ["caddy", "run", "--config", "/app/production.Caddyfile", "--adapter", "caddyfile"]