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

20 lines
354 B
Docker
Raw Normal View History

2026-06-30 20:31:12 +02:00
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 \
2026-06-30 20:31:12 +02:00
ca-certificates \
cmake \
curl \
git \
jq \
make \
openssh-client \
python3 \
python3-pip \
2026-06-30 20:31:12 +02:00
rsync \
unzip \
zip \
&& rm -rf /var/lib/apt/lists/*