From dd28bb24393e511711dde9f8adac2ed9c80df65a Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 9 Sep 2024 21:11:27 +0000 Subject: [PATCH] Update python Docker tag to v3.12.6 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 53d5d54..cd7f83f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # syntax=docker/dockerfile:labs -FROM --platform="$BUILDPLATFORM" python:3.12.5-alpine3.20 AS build +FROM --platform="$BUILDPLATFORM" python:3.12.6-alpine3.20 AS build SHELL ["/bin/ash", "-eo", "pipefail", "-c"] ARG PT_VERSION=v6.2.1 \ TARGETARCH @@ -38,7 +38,7 @@ RUN apk upgrade --no-cache -a && \ find /app/node_modules -name "*.node" -type f -exec strip -s {} \; && \ find /app/node_modules -name "*.node" -type f -exec file {} \; -FROM python:3.12.5-alpine3.20 +FROM python:3.12.6-alpine3.20 COPY --chown=1000:1000 --from=strip /app /app WORKDIR /app RUN apk add --no-cache ca-certificates tzdata tini su-exec nodejs yarn ffmpeg shadow && \