From 2ca73f6d1312455a8fd5aa001a0d8c211280974a Mon Sep 17 00:00:00 2001 From: Reingold Shekhtel <13565058+raikbitters@users.noreply.github.com> Date: Tue, 20 Aug 2024 16:53:30 +0200 Subject: [PATCH] Hotfix 5.11.0-r3 (#172) * Bump version to 5.11.0-r3 * Update Dockerfile to use slim version of Python 3.10.14 for all stages --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 87bc108e..f9120b60 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM --platform=${BUILDPLATFORM} python:3.10.14 as test +FROM --platform=${BUILDPLATFORM} python:3.10.14-slim as test RUN apt-get update && apt-get install -y build-essential \ && rm -rf /var/lib/apt/lists/* \ && python -m venv /venv \ @@ -14,7 +14,7 @@ RUN "${VIRTUAL_ENV}/bin/pip" install --no-cache-dir -r requirements-dev.txt RUN make test-all -FROM --platform=${BUILDPLATFORM} python:3.10.14 as builder +FROM --platform=${BUILDPLATFORM} python:3.10.14-slim as builder RUN apt-get update && apt-get install -y build-essential libpcre3 libpcre3-dev \ && rm -rf /var/lib/apt/lists/* \ && python -m venv /venv \