File tree 6 files changed +8878
-29
lines changed
6 files changed +8878
-29
lines changed Original file line number Diff line number Diff line change 16
16
17
17
- uses : actions/setup-node@v3
18
18
with :
19
- node-version : " 14 "
19
+ node-version : " 16 "
20
20
21
21
- run : |
22
22
npm clean-install
Original file line number Diff line number Diff line change 15
15
16
16
- uses : actions/setup-node@v3
17
17
with :
18
- node-version : " 14 "
18
+ node-version : " 16 "
19
19
20
20
- run : |
21
21
npm clean-install
Original file line number Diff line number Diff line change 43
43
44
44
- uses : actions/setup-node@v3
45
45
with :
46
- node-version : " 14 "
46
+ node-version : " 16 "
47
47
48
48
- name : Prepare release
49
49
run : |
Original file line number Diff line number Diff line change 1
- FROM node:14 as build
1
+ FROM node:16 as build
2
2
WORKDIR /usr/src/app
3
3
# Do `npm ci` separately so we can cache `node_modules`
4
4
# https://nodejs.org/en/docs/guides/nodejs-docker-webapp/
@@ -7,7 +7,7 @@ RUN npm clean-install
7
7
COPY . .
8
8
RUN npm run build:server
9
9
10
- FROM node:14 -slim
10
+ FROM node:16 -slim
11
11
WORKDIR /usr/src/app
12
12
COPY --from=build /usr/src/app/node_modules node_modules
13
13
COPY --from=build /usr/src/app/bin bin
You can’t perform that action at this time.
0 commit comments