From 71f3c658e8a7d99de97f80b0c84fcbbcf274f2b8 Mon Sep 17 00:00:00 2001 From: Abhinav Singh Date: Sat, 10 Aug 2024 15:57:02 +0530 Subject: [PATCH] Use `python:3.12-alpine` in Docker image --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 5be77ec8..550aa496 100644 --- a/Dockerfile +++ b/Dockerfile @@ -41,7 +41,7 @@ RUN /proxy/venv/bin/pip install --no-compile --no-cache-dir \ /proxy/venv/bin/pip uninstall -y wheel setuptools pip && \ /usr/local/bin/pip uninstall -y wheel setuptools pip -FROM python:3.11-alpine +FROM python:3.12-alpine COPY --from=builder /README.md /README.md COPY --from=builder /proxy /proxy RUN if [[ -z "$SKIP_OPENSSL" ]]; then \