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

Commit

Permalink
Update Node.js to v16.18.0
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Oct 13, 2022
1 parent c54615b commit 422a3b1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# syntax=docker/dockerfile:1.0.0-experimental

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

# Rebuild the source code only when needed
FROM node:16.17.0 AS builder
FROM node:16.18.0 AS builder
WORKDIR /app
COPY . .
COPY --from=deps /app/node_modules ./node_modules
RUN npm run build

# Production image, copy all the files and run next
FROM node:16.17.0 AS production
FROM node:16.18.0 AS production
WORKDIR /app

ENV NODE_ENV production
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"npm": "7 - 8"
},
"volta": {
"node": "16.17.1"
"node": "16.18.0"
},
"repository": "https://github.com/dataware-tools/app-user-manager.git",
"scripts": {
Expand Down

0 comments on commit 422a3b1

Please sign in to comment.