1
0

chore: Fix docker build
All checks were successful
Remote Deploy / deploy (push) Successful in 11s

This commit is contained in:
2026-02-11 11:09:54 +01:00
parent faeb0323ba
commit 16b8b9ae10
4 changed files with 18 additions and 8 deletions

View File

@@ -1,14 +1,16 @@
FROM node:18
FROM node:22
WORKDIR /usr/src/app
COPY package*.json ./
COPY . .
RUN npm ci
RUN npm run build
RUN npm run build-noweb
COPY . .
RUN npm prune --production
COPY dist dist
EXPOSE 3000