From 4a7004bb5991e7d160342765e1f7f197f063d49d Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 29 Jun 2024 22:56:03 +0000 Subject: [PATCH] chore(deps): update node.js to v22 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 838800b8..5be27ecc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,7 +10,7 @@ RUN jq 'walk(if type == "object" then with_entries(select(.key | test("^jest|pre # ------------------ # deps install # ------------------ -FROM node:20.15.0-bullseye AS base +FROM node:22.3.0-bullseye AS base # Setup the app WORKDIR WORKDIR /app/rab @@ -37,7 +37,7 @@ RUN true \ # ------------------ # final image # ------------------ -FROM node:20.15.0-bullseye as web +FROM node:22.3.0-bullseye as web LABEL org.opencontainers.image.source = "https://github.com/bodinsamuel/renovate-automatic-branch"