18 lines
261 B
Docker
18 lines
261 B
Docker
|
|
FROM local/gitea-runner-base:latest
|
||
|
|
|
||
|
|
# cicd-base runner profile: common CI build and release tooling.
|
||
|
|
USER root
|
||
|
|
RUN apk add --no-cache \
|
||
|
|
bash \
|
||
|
|
ca-certificates \
|
||
|
|
curl \
|
||
|
|
git \
|
||
|
|
jq \
|
||
|
|
make \
|
||
|
|
openssh-client \
|
||
|
|
python3 \
|
||
|
|
py3-pip \
|
||
|
|
rsync \
|
||
|
|
unzip \
|
||
|
|
yq \
|
||
|
|
zip
|