From 8edf0a499de4fd7998f80c3488c31f88549ba097 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 25 Oct 2022 20:11:32 +0000 Subject: [PATCH] Bump python from 3.10-alpine to 3.11.0-alpine Bumps python from 3.10-alpine to 3.11.0-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..ef98226 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.10-alpine AS builder +FROM python:3.11.0-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.0-alpine LABEL org.opencontainers.image.source=https://github.com/PyDrocsid/template