Files
a13labs.infra/ansible/files/dockerfiles/linux-runners/Dockerfile.cpp-build
T

20 lines
354 B
Docker

FROM local/gitea-runner-base:latest
# cpp-build runner profile: dedicated C/C++ build environment.
USER root
RUN apt-get update && apt-get install -y --no-install-recommends \
build-essential \
ca-certificates \
cmake \
curl \
git \
jq \
make \
openssh-client \
python3 \
python3-pip \
rsync \
unzip \
zip \
&& rm -rf /var/lib/apt/lists/*