initial commit

This commit is contained in:
2026-06-18 20:55:29 +01:00
commit b09735215d
3 changed files with 33 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
FROM alpine:3.23 AS comitium
RUN apk --no-cache add make go scdoc
RUN wget -O - https://git.sr.ht/~nytpu/comitium/archive/v1.8.2.tar.gz | tar -xz \
&& make --directory=comitium-v1.8.2 \
&& mv comitium-v1.8.2/build/comitium /usr/local/bin/comitium \
&& apk del make go scdoc \
&& rm -rf comitium-v1.8.2