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

19 lines
335 B
Docker

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