From 36e66056472fea46a32111c3140b24a7c81eb386 Mon Sep 17 00:00:00 2001 From: valentinkolb Date: Mon, 13 May 2024 20:40:22 +0200 Subject: [PATCH] fix(docker): bug fix in docker file the nginx.conf was copied to the wrong location --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index aae4a8b..5916dd5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -24,7 +24,7 @@ COPY --from=build /app/public /usr/share/nginx/html #copy allowed mime types and nginx config COPY ./nginx/mime.types /etc/nginx/mime.types -COPY ./nginx/nginx.conf /etc/nginx/nginx.conf +COPY ./nginx/nginx.conf /etc/nginx/conf.d/default.conf # Expose port 80 to access the app EXPOSE 80