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

19 lines
335 B
Docker
Raw Normal View History

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