Files
cachetdeco/Dockerfile
mouad bouras 72f652eabe
All checks were successful
Build and Deploy / build-and-deploy (push) Successful in 33s
fix pipeline
2026-03-26 18:01:12 -04:00

10 lines
135 B
Docker

FROM node:lts AS runtime
WORKDIR /app
COPY . .
RUN npm install
RUN npm run build
EXPOSE 4321
CMD ["node", "./dist/server/entry.mjs"]