CoolFace
Datasetpublic

apodex/FrontierChallenge

FrontierChallenge FrontierChallenge provides 97 scientific workflow tasks with plaintext English instructions, inputs, Harbor definitions, domain labels, and the redistributable open runtime image. Path Contents manifest.jsonl Dataset Viewer rows with task ID, taxonomy, difficulty, runtime, and instruction tasks/<task-id>/ instruction.md, task metadata, environment definition, and agent-visible inputs images/ Verified linux/amd64 Docker archive for the 81… See the full description on the dataset page: https://huggingface.co/datasets/apodex/FrontierChallenge.

sourceHugging Facecc-by-4.0updated 3d agoView on Hugging Face
9likes2.3kdownloads
Dockerfile20 linesDownload Raw Back to environment
1# Generated by scripts/apply_shared_task_images.py for task_005_xrd_duplex_phase_quant.2# The task-native Dockerfile is preserved at environment/env/Dockerfile.3# task-native-dockerfile-sha256: 7026734ec0dfe839544d45bf1ea67a84f1441d654401713d513a8623648946354FROM --platform=linux/amd64 frontierchallenge/cpu-open:2026.085 6USER root7WORKDIR /app8RUN rm -rf /app/input /app/data /app/output /sop \9    && mkdir -p /app/input /app/data /app/output /sop \10    && ln -sf /opt/conda/envs/general/bin/python /usr/local/bin/python \11    && ln -sf /opt/conda/envs/general/bin/python /usr/local/bin/python3 \12    && ln -sf /opt/conda/envs/general/bin/pip /usr/local/bin/pip \13    && ln -sf /opt/conda/envs/general/bin/pip /usr/local/bin/pip314COPY data/ /app/input/15RUN ln -s /app/input /sop/input \16    && ln -s /app/output /sop/output \17    && chown -R "$MAMBA_USER:$MAMBA_USER" /app /sop18USER $MAMBA_USER19CMD ["bash"]20