sora 70fe0c1d95 Build SciCode sandbox image from local wheels to avoid PyPI timeouts.
Co-authored-by: Cursor <cursoragent@cursor.com>
2026-09-02 08:08:46 +00:00

12 lines
296 B
Docker

FROM python:3.11-slim
COPY docker_requirements.txt .
COPY wheels /wheels
RUN pip install --no-cache-dir --no-index --find-links=/wheels -r docker_requirements.txt \
&& rm -rf /wheels
WORKDIR /workspace
COPY process_data.py test_util.py test_data.h5 /workspace/
ENV PYTHONPATH="/workspace"