From 73bc29076e82d54877b1997bf831d60450937529 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 3 Jul 2024 01:30:12 +0000 Subject: [PATCH] Update node Docker tag to v22 | datasource | package | from | to | | ---------- | ------- | ------ | ------ | | docker | node | 21.7.3 | 22.4.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..3510d313 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM node:21.7.3-alpine as compiler +FROM node:22.4.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.4.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/"