21 lines
283 B
Docker
21 lines
283 B
Docker
|
|
FROM local/gitea-runner-base:latest
|
||
|
|
|
||
|
|
# cpp-build runner profile: dedicated C/C++ build environment.
|
||
|
|
USER root
|
||
|
|
RUN apk add --no-cache \
|
||
|
|
bash \
|
||
|
|
build-base \
|
||
|
|
ca-certificates \
|
||
|
|
cmake \
|
||
|
|
curl \
|
||
|
|
git \
|
||
|
|
jq \
|
||
|
|
make \
|
||
|
|
openssh-client \
|
||
|
|
python3 \
|
||
|
|
py3-pip \
|
||
|
|
rsync \
|
||
|
|
unzip \
|
||
|
|
yq \
|
||
|
|
zip
|