1
0

Dockerfile 194 B

1234567
  1. FROM python:3.13-slim-trixie
  2. COPY --from=ghcr.io/astral-sh/uv:latest /uv /uvx /bin/
  3. ENV UV_COMPILE_BYTECODE=1
  4. ADD ./ /app/
  5. WORKDIR /app/
  6. RUN uv sync --dev --locked
  7. CMD ["uv", "run", "./run.sh"]