From 51062d2e979a2518e814e16e2540fd34901693ad Mon Sep 17 00:00:00 2001 From: Daniel Dolezal Date: Fri, 31 Oct 2025 14:17:43 +0100 Subject: [PATCH] use uv python 3.13 debian slim as base image and not check config to use base image python and frozen to not check for updates of packages only lock file --- Dockerfile | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 7fb41bf..73852f0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,13 +1,11 @@ -FROM python:3.14-slim - -COPY --from=ghcr.io/astral-sh/uv:latest /uv /uvx /bin/ +FROM ghcr.io/astral-sh/uv:python3.13-trixie-slim # Install app COPY . /app WORKDIR /app # Install dependencies -RUN uv sync --locked --compile-bytecode +RUN uv sync --no-config --frozen --compile-bytecode # Starten Sie Ihre Anwendung EXPOSE 8000