From a4d477b8badf60bdb44926a6c80192bdc2db064f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 6 Apr 2023 20:58:00 +0000 Subject: [PATCH] Bump python from 3.10-alpine to 3.11.3-alpine Bumps python from 3.10-alpine to 3.11.3-alpine. --- updated-dependencies: - dependency-name: python dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index e3b7503..2719262 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.10-alpine AS builder +FROM python:3.11.3-alpine AS builder RUN apk add --no-cache build-base gcc g++ musl-dev libffi-dev postgresql14-dev git python3-dev openssl-dev cargo @@ -19,7 +19,7 @@ RUN set -ex \ COPY .git /build/.git/ RUN git describe --tags --always > VERSION -FROM python:3.10-alpine +FROM python:3.11.3-alpine LABEL org.opencontainers.image.source=https://github.com/PyDrocsid/template