Files
cachetdeco/Dockerfile
mouad bouras d1ad6e0f09
All checks were successful
Build and Deploy / build-and-deploy (push) Successful in 50s
fix build
2026-03-26 18:20:25 -04:00

13 lines
212 B
Docker

FROM node:24-alpine AS runtime
WORKDIR /app
COPY package*.json ./
RUN npm ci
COPY . .
RUN npm run build
ENV NODE_ENV=production
ENV HOST=0.0.0.0
ENV PORT=4321
EXPOSE 4321
CMD ["node", "./dist/server/entry.mjs"]