diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..781610a --- /dev/null +++ b/Dockerfile @@ -0,0 +1,6 @@ +FROM python:3.13-slim-bookworm +COPY --from=ghcr.io/astral-sh/uv:latest /uv /uvx /bin/ +ADD . /app +WORKDIR /app +RUN uv sync --frozen --no-cache +CMD ["/app/.venv/bin/fastapi", "run", "main.py", "--port", "8887"] \ No newline at end of file