Files
cachetdeco/Dockerfile
mouad bouras b23809eb47
All checks were successful
Build and Deploy / build-and-deploy (push) Successful in 45s
fix build
2026-03-26 17:58:04 -04:00

12 lines
162 B
Docker

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"]