forgejo-executor-images/Dockerfile-make-cgo

9 lines
249 B
Text
Raw Normal View History

2024-12-11 22:34:09 +00:00
FROM git.myservermanager.com/msm/forgejo-base-executor-image
# added: make and clang for CGO compile
RUN <<EOF
apt-get update
apt-get install -y --no-install-recommends build-essential make clang
rm -rf /var/lib/apt/lists/\* /tmp/\* /var/tmp/*
EOF