diff --git a/Dockerfile b/Dockerfile index 0849708..39ccbea 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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;"]