Anuj2209's picture
Finalize checkpoint-first evaluation and sandbox submission workflow.
0572d06
Raw
History Blame Contribute Delete
243 Bytes
FROM python:3.11-slim
WORKDIR /app
COPY requirements.txt /app/requirements.txt
RUN pip install --no-cache-dir -r /app/requirements.txt
COPY app.py /app/app.py
EXPOSE 5002
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "5002"]