From fb1dc0faa4ad7283f08f918dea26ff2dd4529b7d Mon Sep 17 00:00:00 2001 From: Tomas Hanak Date: Mon, 23 Sep 2024 20:22:11 +0200 Subject: [PATCH] Added nginx conf --- client/Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/client/Dockerfile b/client/Dockerfile index bbd6fa4..4f66021 100644 --- a/client/Dockerfile +++ b/client/Dockerfile @@ -14,6 +14,8 @@ FROM nginx:alpine COPY --from=build /app/dist /usr/share/nginx/html +COPY nginx.conf /etc/nginx/conf.d/default.conf + EXPOSE 80 CMD ["nginx", "-g", "daemon off;"] \ No newline at end of file