diff --git a/Dockerfile b/Dockerfile index 7de3ece..fffb51b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,10 +6,9 @@ RUN npm install -g pnpm && pnpm install COPY . . RUN pnpm run build -# Stage 2: Serve # Stage 2: Serve FROM nginx:alpine COPY --from=builder /app/dist /usr/share/nginx/html COPY nginx.conf /etc/nginx/conf.d/default.conf -EXPOSE 3000 +EXPOSE 80 CMD ["nginx", "-g", "daemon off;"] \ No newline at end of file