EdgeBench-kit / bases /python310 /Dockerfile
Odysseusqsl's picture
pilot batch: 3 tasks (ad_placement, k12_math, exchange_core) + bases + standalone builder
65af285 verified
Raw
History Blame Contribute Delete
446 Bytes
# Builds edgebench.base.python310:6fd084182df4
FROM --platform=linux/amd64 python:3.10
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 '*'