File size: 439 Bytes
65af285 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | # Builds edgebench.base.rust:b764c9a0a305
FROM --platform=linux/amd64 rust:1.78
ARG DEBIAN_FRONTEND=noninteractive
ENV TZ=Etc/UTC
RUN apt-get update && apt-get install -y --no-install-recommends \
git \
curl \
jq \
build-essential 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 '*'
|