1
0
Files
jecnarozvrh/Dockerfile
jzitnik-dev 7938d2cb9f
All checks were successful
Remote Deploy / deploy (push) Successful in 10s
feat: Serve web
2026-02-11 11:25:03 +01:00

20 lines
189 B
Docker

FROM node:22
WORKDIR /usr/src/app
COPY . .
RUN npm ci
RUN npm run build-noweb
RUN npm prune --production
COPY dist dist
EXPOSE 3000
ENV SERVE_WEB=false
CMD ["npm", "run", "serve"]