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