File tree 1 file changed +6
-6
lines changed
1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 1
1
# build front-end
2
- FROM node:20 -alpine AS frontend
2
+ FROM node:22 -alpine AS frontend
3
3
4
4
ARG GIT_COMMIT_HASH=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
5
5
ARG RELEASE_VERSION=v0.0.0
6
6
7
7
ENV VITE_GIT_COMMIT_HASH $GIT_COMMIT_HASH
8
8
ENV VITE_RELEASE_VERSION $RELEASE_VERSION
9
9
10
- RUN npm install pnpm -g
10
+ RUN npm install pnpm@8 -g
11
11
12
12
WORKDIR /app
13
13
@@ -22,9 +22,9 @@ COPY . /app
22
22
RUN pnpm run build
23
23
24
24
# build backend
25
- FROM node:20 -alpine as backend
25
+ FROM node:22 -alpine as backend
26
26
27
- RUN npm install pnpm -g
27
+ RUN npm install pnpm@8 -g
28
28
29
29
WORKDIR /app
30
30
@@ -39,9 +39,9 @@ COPY /service /app
39
39
RUN pnpm build
40
40
41
41
# service
42
- FROM node:20 -alpine
42
+ FROM node:22 -alpine
43
43
44
- RUN npm install pnpm -g
44
+ RUN npm install pnpm@8 -g
45
45
46
46
WORKDIR /app
47
47
You can’t perform that action at this time.
0 commit comments