feat: move distribution builds to platform Docker builder

This commit is contained in:
npc0-hue
2026-07-30 19:25:50 +08:00
parent 1e004dc9ec
commit e614a17fe3
45 changed files with 4492 additions and 294 deletions
+11
View File
@@ -0,0 +1,11 @@
# syntax=docker/dockerfile:1
FROM golang:1.25.1-bookworm
RUN apt-get update \
&& apt-get install -y --no-install-recommends ca-certificates git \
&& rm -rf /var/lib/apt/lists/* \
&& go version \
&& git --version
WORKDIR /workspace