1
0
Files
jecnarozvrh/Dockerfile
jzitnik-dev 16b8b9ae10
All checks were successful
Remote Deploy / deploy (push) Successful in 11s
chore: Fix docker build
2026-02-11 11:09:54 +01:00

18 lines
168 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
CMD ["npm", "run", "serve"]