From 81f8d6877b10f3efca173cb47ade596eea679f35 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 6 Dec 2024 02:21:15 +0000 Subject: [PATCH] Update alpine Docker tag to v3.21.0 --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 6bc19e3..d825f22 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # syntax=docker/dockerfile:labs -FROM --platform="$BUILDPLATFORM" alpine:3.20.3 AS build +FROM --platform="$BUILDPLATFORM" alpine:3.21.0 AS build SHELL ["/bin/ash", "-eo", "pipefail", "-c"] ARG NODE_ENV=production \ W2D_VERSION=v0.10.28 \ @@ -19,14 +19,14 @@ RUN apk upgrade --no-cache -a && \ fi && \ yarn cache clean --all && \ clean-modules --yes -FROM alpine:3.20.3 AS strip +FROM alpine:3.21.0 AS strip COPY --from=build /app /app RUN apk upgrade --no-cache -a && \ apk add --no-cache ca-certificates binutils file && \ find /app/node_modules -name "*.node" -type f -exec strip -s {} \; && \ find /app/node_modules -name "*.node" -type f -exec file {} \; -FROM alpine:3.20.3 +FROM alpine:3.21.0 RUN apk upgrade --no-cache -a && \ apk add --no-cache ca-certificates tzdata tini nodejs-current COPY --from=strip /app /app