From ee7cbe2866e6a533c2b645dc15501c83cc6f22f5 Mon Sep 17 00:00:00 2001 From: Maximilian Dorninger <97409287+maxdorninger@users.noreply.github.com> Date: Tue, 28 Oct 2025 20:15:02 +0100 Subject: [PATCH] pins base image of MetadataRelay to Python 3.13 variant (#169) This pull request updates the base image used in the `metadata_relay/Dockerfile` to ensure compatibility with Python 3.13. --------- Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- metadata_relay/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/metadata_relay/Dockerfile b/metadata_relay/Dockerfile index 1cf1b18..17ec91d 100644 --- a/metadata_relay/Dockerfile +++ b/metadata_relay/Dockerfile @@ -1,4 +1,4 @@ -FROM ghcr.io/astral-sh/uv:debian-slim +FROM ghcr.io/astral-sh/uv:python3.13-trixie-slim ARG VERSION LABEL version=${VERSION} @@ -11,4 +11,4 @@ WORKDIR /app COPY . . RUN uv sync --locked EXPOSE 8000 -CMD ["uv", "run", "fastapi", "run" ,"/app/main.py"] \ No newline at end of file +CMD ["uv", "run", "fastapi", "run", "/app/main.py"]