diff --git a/Dockerfile b/Dockerfile index 92ecba7..b4d845f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,7 +15,8 @@ FROM nginx:1.29.0-alpine-slim RUN rm /etc/nginx/conf.d/default.conf -COPY --from=builder /app/.output/public /usr/share/nginx/html +COPY --from=builder /app/dist /usr/share/nginx/html COPY nginx.conf /etc/nginx/conf.d/default.conf EXPOSE 80 +CMD ["nginx", "-g", "daemon off;"]