File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 11# build front-end
2- FROM node:20 -alpine AS frontend
2+ FROM node:22 -alpine AS frontend
33
44ARG GIT_COMMIT_HASH=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
55ARG RELEASE_VERSION=v0.0.0
66
77ENV VITE_GIT_COMMIT_HASH $GIT_COMMIT_HASH
88ENV VITE_RELEASE_VERSION $RELEASE_VERSION
99
10- RUN npm install pnpm -g
10+ RUN npm install pnpm@8 -g
1111
1212WORKDIR /app
1313
@@ -22,9 +22,9 @@ COPY . /app
2222RUN pnpm run build
2323
2424# build backend
25- FROM node:20 -alpine as backend
25+ FROM node:22 -alpine as backend
2626
27- RUN npm install pnpm -g
27+ RUN npm install pnpm@8 -g
2828
2929WORKDIR /app
3030
@@ -39,9 +39,9 @@ COPY /service /app
3939RUN pnpm build
4040
4141# service
42- FROM node:20 -alpine
42+ FROM node:22 -alpine
4343
44- RUN npm install pnpm -g
44+ RUN npm install pnpm@8 -g
4545
4646WORKDIR /app
4747
You can’t perform that action at this time.
0 commit comments