Skip to content
This repository was archived by the owner on Jan 13, 2023. It is now read-only.

Commit 5133b17

Browse files
Update Node.js to v16.18.1
1 parent a5a7449 commit 5133b17

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Dockerfile

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# syntax=docker/dockerfile:1.0.0-experimental
22

3-
FROM node:16.17.0 AS deps
3+
FROM node:16.18.1 AS deps
44
WORKDIR /app
55
RUN wget -O /bin/jq https://github.com/stedolan/jq/releases/download/jq-1.6/jq-linux64 && chmod +x /bin/jq
66
COPY . .
@@ -21,14 +21,14 @@ COPY --from=deps /app .
2121
RUN rm ./loki.config.js && mv ./loki.config-ci.js ./loki.config.js
2222

2323
# Rebuild the source code only when needed
24-
FROM node:16.17.0 AS builder
24+
FROM node:16.18.1 AS builder
2525
WORKDIR /app
2626
COPY . .
2727
COPY --from=deps /app/node_modules ./node_modules
2828
RUN npm run build
2929

3030
# Production image, copy all the files and run next
31-
FROM node:16.17.0 AS production
31+
FROM node:16.18.1 AS production
3232
WORKDIR /app
3333

3434
ENV NODE_ENV production

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"npm": "7 - 8"
88
},
99
"volta": {
10-
"node": "16.17.1"
10+
"node": "16.18.1"
1111
},
1212
"repository": "https://github.com/dataware-tools/app-user-manager.git",
1313
"scripts": {

0 commit comments

Comments
 (0)