PACKAGE REGISTRY / runners
go
Manage repository packages.
go (bookworm)
Published 2026-08-06 12:46:06 +03:00 by ScuroNeko
Installation
docker pull git.scuroneko.dev/runners/go:bookwormsha256:2d9088303378e86233ebe08d2f2420a244ce50193efd11eeb32708a3d494cf85
Images
| Digest | OS / Arch | Size |
|---|---|---|
| 9ec15fd2de | linux/amd64 | 365 MiB |
Image Layers ( linux/amd64)
| # debian.sh --arch 'amd64' out/ 'bookworm' '@1785715200' |
| 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 ; dpkgArch="$(dpkg --print-architecture)"; if [ "$dpkgArch" = 'arm64' ]; then apt-get install -y --no-install-recommends binutils-gold; fi; rm -rf /var/lib/apt/lists/* # buildkit |
| ENV GOLANG_VERSION=1.26.5 |
| 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 |
| ARG GOLANGCI_LINT_VERSION=v2.12.2 |
| RUN |1 GOLANGCI_LINT_VERSION=v2.12.2 /bin/sh -c apt-get update && apt-get install -y --no-install-recommends ca-certificates gnupg bash git curl wget jq zip unzip file tar gzip xz-utils rsync && mkdir -p /etc/apt/keyrings && curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg && echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_24.x nodistro main" > /etc/apt/sources.list.d/nodesource.list && apt-get update && apt-get install -y --no-install-recommends nodejs && go version && node -v && npm -v && apt-get clean && rm -rf /var/lib/apt/lists/* # buildkit |
| RUN |1 GOLANGCI_LINT_VERSION=v2.12.2 /bin/sh -c curl -sSfL https://golangci-lint.run/install.sh | sh -s -- -b /usr/local/bin ${GOLANGCI_LINT_VERSION} # buildkit |