# Builds edgebench.base.coq:5cd61ba2479d FROM --platform=linux/amd64 coqorg/coq:8.20 USER root ARG DEBIAN_FRONTEND=noninteractive ENV TZ=Etc/UTC RUN apt-get update && apt-get install -y --no-install-recommends \ git \ curl \ jq \ build-essential \ gcc \ g++ \ python3 \ make \ procps 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 '*' ENV PATH="/home/coq/.opam/${COMPILER}/bin:${PATH}" RUN chmod -R a+rX /home/coq/.opam ENTRYPOINT []