1
0

chore: Fix docker build
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
+6 -4
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