This commit is contained in:
Andras Bacsai
2025-12-07 22:05:06 +01:00
committed by Cinzya
parent 266be85130
commit 073882d02f
+1 -1
View File
@@ -63,7 +63,7 @@ COPY . .
RUN npm run generate
FROM nginx
COPY --from=build /app/dist /usr/share/nginx/html
COPY --from=build /app/.output/public /usr/share/nginx/html
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]
```