gc_channel (latest)
Published 2025-04-14 13:01:00 +10:00 by fholland
Installation
docker pull huron.connectingnow.net/fholland/gc_channel:latest
sha256:32fa1d652bf1445c1c3e41821ffbadf0e7d2245c69c6c1fb9953faabe66c8924
Image Layers
# debian.sh --arch 'amd64' out/ 'bookworm' '@1743984000' |
RUN /bin/sh -c set -eux; apt-get update; apt-get install -y --no-install-recommends ca-certificates curl gnupg netbase sq wget ; rm -rf /var/lib/apt/lists/* # buildkit |
RUN /bin/sh -c set -eux; apt-get update; apt-get install -y --no-install-recommends git mercurial openssh-client subversion procps ; rm -rf /var/lib/apt/lists/* # buildkit |
RUN /bin/sh -c set -eux; apt-get update; apt-get install -y --no-install-recommends g++ gcc libc6-dev make pkg-config ; rm -rf /var/lib/apt/lists/* # buildkit |
ENV GOLANG_VERSION=1.23.8 |
ENV GOTOOLCHAIN=local |
ENV GOPATH=/go |
ENV PATH=/go/bin:/usr/local/go/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin |
COPY /target/ / # buildkit |
RUN /bin/sh -c mkdir -p "$GOPATH/src" "$GOPATH/bin" && chmod -R 1777 "$GOPATH" # buildkit |
WORKDIR /go |
WORKDIR /app |
COPY go.mod go.sum ./ # buildkit |
RUN /bin/sh -c go mod download # buildkit |
COPY . . # buildkit |
RUN /bin/sh -c CGO_ENABLED=0 GOOS=linux go build -o /gc_channel # buildkit |
CMD ["/gc_channel"] |