From 80d09e9feb0f3afe4e52f0da21b40228388ab05a Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 23 Apr 2024 23:10:29 +0000 Subject: [PATCH] Update node Docker tag to v21 | datasource | package | from | to | | ---------- | ------- | ------- | ------ | | docker | node | 20.12.2 | 21.7.3 | 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 eb1a12b0..7e4b0dfb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM node:20.12.2-alpine as compiler +FROM node:21.7.3-alpine as compiler RUN mkdir -p /usr/local/source WORKDIR /usr/local/source @@ -10,7 +10,7 @@ COPY ./src ./src RUN npm run build -FROM node:20.12.2-alpine +FROM node:21.7.3-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/"