autodiscover-proxy/Dockerfile
Nathan Windisch b860fac5d0
All checks were successful
ci / docker (push) Successful in 25s
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 4s
updated dockerfile to remove specified host
2025-03-20 07:03:51 +00:00

8 lines
191 B
Docker

FROM python:3.12-slim-bookworm
COPY --from=ghcr.io/astral-sh/uv:latest /uv /uvx /bin/
ADD . /app
WORKDIR /app
RUN uv sync --frozen
EXPOSE 8000
CMD ["uv", "run", "fastapi", "dev", "main.py"]