Skip to content

Commit f9bc239

Browse files
committed
chore: some build problem
1 parent 2752a25 commit f9bc239

File tree

4 files changed

+66
-319
lines changed

4 files changed

+66
-319
lines changed

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
22
1+
24

Dockerfile

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
##########################
2-
FROM node:22.9.0-alpine3.19 AS base
2+
FROM node:24.11.1-alpine3.22 AS base
33

44
WORKDIR /app
55
ENV NODE_ENV=production
@@ -22,9 +22,9 @@ COPY --from=package-strip /app/package.json package.json
2222
COPY --from=package-strip /app/package-lock.json package-lock.json
2323
ADD ui/package.json ui/package.json
2424
ADD 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
##########################
3030
FROM installer AS types
@@ -37,7 +37,6 @@ RUN npm run build-types
3737
##########################
3838
FROM installer AS ui
3939

40-
RUN npm i --no-save @rollup/rollup-linux-x64-musl
4140
COPY --from=types /app/api/config api/config
4241
COPY --from=types /app/api/types api/types
4342
ADD /api/src/config.ts api/src/config.ts

0 commit comments

Comments
 (0)