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>
This commit is contained in:
Maximilian Dorninger
2025-10-28 20:15:02 +01:00
committed by GitHub
parent fdffa38c92
commit ee7cbe2866

View File

@@ -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"]
CMD ["uv", "run", "fastapi", "run", "/app/main.py"]