Skip to content

Commit

Permalink
chore(deps): update dependency node
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Aug 19, 2024
1 parent 938ff2b commit 2233641
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v18.12.0
18.20.4
4 changes: 2 additions & 2 deletions containers/generic-app/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:18.18.2-alpine AS builder
FROM node:18.20.4-alpine AS builder

ARG PACKAGE
ENV NODE_ENV=development
Expand All @@ -21,7 +21,7 @@ RUN npm run -w packages/${PACKAGE} build
# So with this command we prebuild library packages and make them available for later
RUN find packages -type d -name 'lib-*' -exec sh -c 'npm run -w {} build && mkdir -p libraries/{}/ && cp -r {}/dist libraries/{}/ && cp -r {}/package*.json libraries/{}/' \;

FROM node:18.18-alpine AS runner
FROM node:18.20-alpine AS runner

# Version 9+ is required to run npm scripts as root
RUN npm install -g npm@9
Expand Down
2 changes: 1 addition & 1 deletion containers/generic-web/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:18.18.2-alpine AS builder
FROM node:18.20.4-alpine AS builder

ARG PACKAGE
ENV NODE_ENV=development
Expand Down
2 changes: 1 addition & 1 deletion containers/takaro/dev.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:18.18.2-bullseye
FROM node:18.20.4-bullseye

ENV NODE_ENV=development

Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"release:patch": "npm version patch --no-git-tag-version --workspaces && git add **/package.json; npm version patch --include-workspace-root --force"
},
"engines": {
"node": "18.18.x",
"node": "18.20.x",
"npm": ">=9"
},
"contributors": [
Expand Down
2 changes: 1 addition & 1 deletion packages/lib-components/Dockerfile.dev
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:18.18.2-alpine AS build
FROM node:18.20.4-alpine AS build

ENV NODE_ENV=development
WORKDIR /app
Expand Down

0 comments on commit 2233641

Please sign in to comment.