File tree Expand file tree Collapse file tree 4 files changed +66
-319
lines changed
Expand file tree Collapse file tree 4 files changed +66
-319
lines changed Original file line number Diff line number Diff line change 1- 22
1+ 24
Original file line number Diff line number Diff line change 11# #########################
2- FROM node:22.9.0 -alpine3.19 AS base
2+ FROM node:24.11.1 -alpine3.22 AS base
33
44WORKDIR /app
55ENV NODE_ENV=production
@@ -22,9 +22,9 @@ COPY --from=package-strip /app/package.json package.json
2222COPY --from=package-strip /app/package-lock.json package-lock.json
2323ADD ui/package.json ui/package.json
2424ADD api/package.json api/package.json
25- # full deps install used for types and ui building
25+ # full deps install used for building
2626# also used to fill the npm cache for faster install of api deps
27- RUN npm ci --omit=dev --omit=optional --omit= peer --no-audit --no-fund
27+ RUN npm ci --omit=peer --no-audit --no-fund
2828
2929# #########################
3030FROM installer AS types
@@ -37,7 +37,6 @@ RUN npm run build-types
3737# #########################
3838FROM installer AS ui
3939
40- RUN npm i --no-save @rollup/rollup-linux-x64-musl
4140COPY --from=types /app/api/config api/config
4241COPY --from=types /app/api/types api/types
4342ADD /api/src/config.ts api/src/config.ts
You can’t perform that action at this time.
0 commit comments