mirror of
https://github.com/maxdorninger/MediaManager.git
synced 2026-04-18 07:33:24 +02:00
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>
15 lines
271 B
Docker
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"]
|