From 3c8b697716f568b8b522af320c1719f7c492267e Mon Sep 17 00:00:00 2001 From: Anton Dubovik Date: Wed, 11 Dec 2024 13:14:22 +0000 Subject: [PATCH] chore: pinned Docker image to alpine-3.20 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 1e1f39e..a86a60b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.11-alpine as builder +FROM python:3.11-alpine3.20 as builder RUN apk update && apk upgrade --no-cache libcrypto3 libssl3 # geos-dev is required for https://pypi.org/project/shapely/2.0.5/ @@ -15,7 +15,7 @@ RUN poetry install --no-interaction --no-ansi --no-cache --no-root --no-director COPY . . RUN poetry install --no-interaction --no-ansi --no-cache --only main -FROM python:3.11-alpine as server +FROM python:3.11-alpine3.20 as server RUN apk update && apk upgrade --no-cache libcrypto3 libssl3 # fix CVE-2023-52425