dispatch_arena_v0 / Dockerfile
Freakdivi's picture
Upload folder using huggingface_hub
194d2dd verified
raw
history blame contribute delete
388 Bytes
FROM python:3.11-slim
WORKDIR /app
COPY --from=ghcr.io/astral-sh/uv:latest /uv /bin/uv
# Build context is the project dir where pyproject.toml lives.
COPY . /app
RUN uv pip install --system --no-cache-dir -e .
ENV DISPATCH_ARENA_MAX_CONCURRENT_ENVS=16
ENV PYTHONUNBUFFERED=1
ENV PORT=8000
EXPOSE 8000
ENV ENABLE_WEB_INTERFACE=true
CMD ["python", "-m", "dispatch_arena.server.app"]