fix build
All checks were successful
Build and Deploy / build-and-deploy (push) Successful in 45s

This commit is contained in:
2026-03-26 17:58:04 -04:00
parent cd3cb704be
commit b23809eb47

View File

@@ -1,3 +1,12 @@
FROM nginx:alpine
COPY dist/ /usr/share/nginx/html/
EXPOSE 80
FROM node:lts AS runtime
WORKDIR /app
COPY . .
RUN npm install
RUN npm run build
ENV HOST=0.0.0.0
ENV PORT=80
EXPOSE 80
CMD ["node", "./dist/server/entry.mjs"]