htr_demo / .docker /dockerfile
Gabriel
htrflow app 1.0.0
21c87da
raw
history blame
212 Bytes
FROM python:3.12-slim-bullseye
COPY --from=ghcr.io/astral-sh/uv:latest /uv /bin/uv
COPY . /app
WORKDIR /app
RUN uv sync --frozen --no-cache
CMD ["/app/.venv/bin/fastapi", "run", "app/main.py", "--port", "80"]