Refactor Dockerfiles for Gitea runners: update package installations, remove obsolete files, and enhance build configurations

This commit is contained in:
2026-07-06 21:13:11 +02:00
parent 3063561832
commit 58ca1561ec
7 changed files with 49 additions and 106 deletions
@@ -2,18 +2,17 @@ FROM local/gitea-runner-base:latest
# go-build runner profile: dedicated Go build environment.
USER root
RUN apk add --no-cache \
bash \
RUN apt-get update && apt-get install -y --no-install-recommends \
ca-certificates \
curl \
git \
go \
golang-go \
jq \
make \
openssh-client \
python3 \
py3-pip \
python3-pip \
rsync \
unzip \
yq \
zip
zip \
&& rm -rf /var/lib/apt/lists/*