Files
MediaManager-maxdorninger/metadata_relay/Dockerfile
Maximilian Dorninger ee7cbe2866 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>
2025-10-28 20:15:02 +01:00

15 lines
271 B
Docker

FROM ghcr.io/astral-sh/uv:python3.13-trixie-slim
ARG VERSION
LABEL version=${VERSION}
ENV BASE_PATH=""
RUN apt-get update && apt-get install -y ca-certificates
WORKDIR /app
COPY . .
RUN uv sync --locked
EXPOSE 8000
CMD ["uv", "run", "fastapi", "run", "/app/main.py"]