From b9b51fa4f51320bda896da5729641184b475fc43 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Wed, 26 Jun 2024 14:16:54 +0000 Subject: [PATCH] chore(deps): update docker.io/node docker tag to v22 (#22) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | docker.io/node | stage | major | `20-alpine` -> `22-alpine` | | docker.io/node | final | major | `20-alpine` -> `22-alpine` | --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about these updates again. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). Reviewed-on: https://git.dzeio.com/avior/template-web-astro/pulls/22 Co-authored-by: Renovate Bot Co-committed-by: Renovate Bot --- Dockerfile | 4 ++-- Dockerfile.static | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 009bd8d..6d4dcf5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ ######### # Build # ######### -FROM docker.io/node:20-alpine AS build +FROM docker.io/node:22-alpine AS build # run as non root user USER node @@ -29,7 +29,7 @@ RUN npm prune --omit=dev ############## # Production # ############## -FROM docker.io/node:20-alpine AS prod +FROM docker.io/node:22-alpine AS prod # inform software to be in production ENV NODE_ENV=production diff --git a/Dockerfile.static b/Dockerfile.static index 6f40aee..d19d9fb 100644 --- a/Dockerfile.static +++ b/Dockerfile.static @@ -3,7 +3,7 @@ ######### # Build # ######### -FROM docker.io/node:20-alpine as BUILD_IMAGE +FROM docker.io/node:22-alpine as BUILD_IMAGE # run as non root user USER node