This repository was archived by the owner on Jan 13, 2023. It is now read-only.
Commit 9b2918b 1 parent a5a7449 commit 9b2918b Copy full SHA for 9b2918b
File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
1
# syntax=docker/dockerfile:1.0.0-experimental
2
2
3
- FROM node:16.17.0 AS deps
3
+ FROM node:16.18.1 AS deps
4
4
WORKDIR /app
5
5
RUN wget -O /bin/jq https://github.com/stedolan/jq/releases/download/jq-1.6/jq-linux64 && chmod +x /bin/jq
6
6
COPY . .
@@ -21,14 +21,14 @@ COPY --from=deps /app .
21
21
RUN rm ./loki.config.js && mv ./loki.config-ci.js ./loki.config.js
22
22
23
23
# Rebuild the source code only when needed
24
- FROM node:16.17.0 AS builder
24
+ FROM node:16.18.1 AS builder
25
25
WORKDIR /app
26
26
COPY . .
27
27
COPY --from=deps /app/node_modules ./node_modules
28
28
RUN npm run build
29
29
30
30
# 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
32
32
WORKDIR /app
33
33
34
34
ENV NODE_ENV production
Original file line number Diff line number Diff line change 7
7
"npm" : " 7 - 8"
8
8
},
9
9
"volta" : {
10
- "node" : " 16.17.1 "
10
+ "node" : " 16.19.0 "
11
11
},
12
12
"repository" : " https://github.com/dataware-tools/app-user-manager.git" ,
13
13
"scripts" : {
You can’t perform that action at this time.
0 commit comments