From 7698adca327abf84a867589d9ffd9a556ecea6c3 Mon Sep 17 00:00:00 2001 From: zwitschi Date: Mon, 22 Sep 2025 10:59:33 +0200 Subject: [PATCH] update Dockerfile to newer python version --- Dockerfile | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 56633c7..050b512 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.11-slim +FROM python:3.12-slim-trixie # Set a working directory WORKDIR /app @@ -11,9 +11,6 @@ ENV PYTHONDONTWRITEBYTECODE=1 \ # Install system deps RUN apt-get update && apt-get install -y --no-install-recommends \ - build-essential \ - gcc \ - libffi-dev \ && rm -rf /var/lib/apt/lists/* # Create a non-root user