fix: update nginx config

This commit is contained in:
thehrz 2023-08-05 11:29:06 +08:00
parent 692350f32b
commit 13e6d63d62
Signed by: thehrz
GPG Key ID: C84CBCE7D5F88855

View File

@ -13,7 +13,7 @@ RUN pnpm build
FROM nginx:stable-alpine as production-stage
COPY --from=build-stage /app/nginx/conf.d /etc/nginx/conf.d
COPY --from=build-stage /app/dist /usr/share/nginx/html
COPY --from=build-stage /app/dist /usr/local/nginx/html/
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]