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