From 7b76b5a4d2eff37537d181c36d95e7e8c242108d Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 6 Dec 2023 04:10:51 +0000 Subject: [PATCH] Update node Docker tag to v21 | datasource | package | from | to | | ---------- | ------- | ------ | ------ | | docker | node | 20.6.1 | 21.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 2636b639..ab4540a5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM node:20.6.1-alpine as compiler +FROM node:21.4.0-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.6.1-alpine +FROM node:21.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/"