From 0e2850da2fc3e024da0a9f371ea7b90f3603107d Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 2 May 2024 10:36:15 +0000 Subject: [PATCH] Update Node.js to v20 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index e6f2b87..ba923fb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # syntax=docker/dockerfile:labs -FROM --platform="$BUILDPLATFORM" node:18.20.2-alpine3.19 as build +FROM --platform="$BUILDPLATFORM" node:20.12.2-alpine3.19 as build SHELL ["/bin/ash", "-eo", "pipefail", "-c"] ARG PT_VERSION=v6.1.0 \ TARGETARCH @@ -36,7 +36,7 @@ RUN apk upgrade --no-cache -a && \ fi && \ yarn cache clean --all -FROM node:18.20.2-alpine3.19 +FROM node:20.12.2-alpine3.19 SHELL ["/bin/ash", "-eo", "pipefail", "-c"] COPY --from=build /app /app WORKDIR /app