From 3e0a5a431d94fd68a9da6ee3ad2ae4a2e7627023 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 2 May 2024 23:21:30 +0000 Subject: [PATCH] Update node Docker tag to v22 | datasource | package | from | to | | ---------- | ------- | ------ | ------ | | docker | node | 21.7.3 | 22.1.0 | Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index b8748c52..c552c197 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM node:21.7.3-alpine as compiler +FROM node:22.1.0-alpine as compiler RUN mkdir -p /usr/local/source WORKDIR /usr/local/source @@ -11,7 +11,7 @@ COPY ./src ./src RUN npm run build -FROM node:21.7.3-alpine +FROM node:22.1.0-alpine LABEL "repository"="http://github.com/laminas/laminas-ci-matrix-action" LABEL "homepage"="http://github.com/laminas/laminas-ci-matrix-action" LABEL "maintainer"="https://github.com/laminas/technical-steering-committee/"