Skip to content

Commit

Permalink
chore(deps): update dependency node to v18.19.0 (#1125)
Browse files Browse the repository at this point in the history
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
  • Loading branch information
renovate[bot] authored Jan 25, 2024
1 parent e08c1cd commit 9945517
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .node-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
18.17.0
18.19.0
2 changes: 1 addition & 1 deletion .tool-versions
Original file line number Diff line number Diff line change
@@ -1 +1 @@
nodejs 18.17.0
nodejs 18.19.0
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
##--------- Stage: builder ---------##
# Node image variant name explanations: "bookworm" is the codeword for Debian 12, and "slim" only contains the minimal packages needed to run Node
FROM node:18.17.0-bookworm-slim AS builder
FROM node:18.19.0-bookworm-slim AS builder

RUN apt-get update \
&& apt-get dist-upgrade -y \
Expand Down Expand Up @@ -65,7 +65,7 @@ CMD ["-r","./startup/index.js", "node_modules/.bin/next", "start"]
##--------- Stage: build-env ---------##

# Production image, copy all the files and run next
FROM node:18.17.0-bookworm-slim AS build-env
FROM node:18.19.0-bookworm-slim AS build-env

WORKDIR /app

Expand Down
4 changes: 2 additions & 2 deletions Dockerfile-gh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
##--------- Stage: builder ---------##
# Node image variant name explanations: "bookworm" is the codeword for Debian 12, and "slim" only contains the minimal packages needed to run Node
FROM node:18.17.0-bookworm-slim AS builder
FROM node:18.19.0-bookworm-slim AS builder

RUN apt-get update \
&& apt-get dist-upgrade -y \
Expand Down Expand Up @@ -65,7 +65,7 @@ CMD ["-r","./startup/index.js", "node_modules/.bin/next", "start"]
##--------- Stage: build-env ---------##

# Production image, copy all the files and run next
FROM node:18.17.0-bookworm-slim AS build-env
FROM node:18.19.0-bookworm-slim AS build-env

WORKDIR /app

Expand Down

0 comments on commit 9945517

Please sign in to comment.