pilot batch: 3 tasks (ad_placement, k12_math, exchange_core) + bases + standalone builder
65af285 verified | # Builds edgebench.base.cpp:19685ea8d3f4 | |
| FROM --platform=linux/amd64 ubuntu:22.04 | |
| ARG DEBIAN_FRONTEND=noninteractive | |
| ENV TZ=Etc/UTC | |
| RUN apt-get update && apt-get install -y --no-install-recommends \ | |
| git \ | |
| curl \ | |
| jq \ | |
| build-essential \ | |
| cmake \ | |
| gcc \ | |
| g++ \ | |
| libffi-dev \ | |
| pkg-config \ | |
| ca-certificates sudo \ | |
| && rm -rf /var/lib/apt/lists/* \ | |
| && useradd -m -s /bin/bash agent \ | |
| && echo 'agent ALL=(ALL) NOPASSWD:ALL' >> /etc/sudoers \ | |
| && git config --global safe.directory '*' | |