From 267e77e853a0b2f880092fe860daba64543d630a Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 25 Oct 2024 17:16:45 +0000 Subject: [PATCH] Update node Docker tag to v23 | datasource | package | from | to | | ---------- | ------- | ------ | ------ | | docker | node | 21.7.3 | 23.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..5a08877f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM node:21.7.3-alpine as compiler +FROM node:23.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:23.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/"