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,9 +2,8 @@ FROM local/gitea-runner-base:latest
# cpp-build runner profile: dedicated C/C++ build environment.
USER root
RUN apk add --no-cache \
bash \
build-base \
RUN apt-get update && apt-get install -y --no-install-recommends \
build-essential \
ca-certificates \
cmake \
curl \
@@ -13,8 +12,8 @@ RUN apk add --no-cache \
make \
openssh-client \
python3 \
py3-pip \
python3-pip \
rsync \
unzip \
yq \
zip
zip \
&& rm -rf /var/lib/apt/lists/*