Skip to content

Commit

Permalink
chore: pinned Docker image to alpine-3.20
Browse files Browse the repository at this point in the history
  • Loading branch information
adubovik committed Dec 11, 2024
1 parent 3f1e8f5 commit 3c8b697
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -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/
Expand All @@ -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
Expand Down

0 comments on commit 3c8b697

Please sign in to comment.