diff --git a/frontend/Dockerfile b/frontend/Dockerfile index 13f78c6..533e84e 100644 --- a/frontend/Dockerfile +++ b/frontend/Dockerfile @@ -13,7 +13,7 @@ RUN npm ci && npm run build FROM nginx:alpine COPY --from=build-image /app/dist/app-fe /usr/share/nginx/html -COPY ./nginx/conf.d /etc/nginx/ +COPY ./nginx/conf.d/default.conf /etc/nginx/default.conf RUN nginx -s reload EXPOSE 80