File tree Expand file tree Collapse file tree 6 files changed +8878
-29
lines changed Expand file tree Collapse file tree 6 files changed +8878
-29
lines changed Original file line number Diff line number Diff line change 1616
1717 - uses : actions/setup-node@v3
1818 with :
19- node-version : " 14 "
19+ node-version : " 16 "
2020
2121 - run : |
2222 npm clean-install
Original file line number Diff line number Diff line change 1515
1616 - uses : actions/setup-node@v3
1717 with :
18- node-version : " 14 "
18+ node-version : " 16 "
1919
2020 - run : |
2121 npm clean-install
Original file line number Diff line number Diff line change 4343
4444 - uses : actions/setup-node@v3
4545 with :
46- node-version : " 14 "
46+ node-version : " 16 "
4747
4848 - name : Prepare release
4949 run : |
Original file line number Diff line number Diff line change 1- FROM node:14 as build
1+ FROM node:16 as build
22WORKDIR /usr/src/app
33# Do `npm ci` separately so we can cache `node_modules`
44# https://nodejs.org/en/docs/guides/nodejs-docker-webapp/
@@ -7,7 +7,7 @@ RUN npm clean-install
77COPY . .
88RUN npm run build:server
99
10- FROM node:14 -slim
10+ FROM node:16 -slim
1111WORKDIR /usr/src/app
1212COPY --from=build /usr/src/app/node_modules node_modules
1313COPY --from=build /usr/src/app/bin bin
You can’t perform that action at this time.
0 commit comments