Namespace
sourcegraph
Image / Tag
lsif-go:v1.1.1
Content Digest
sha256:6a2ec8544eed2027419dc5f71190efac4eec2dc7bd584f65db4ce1a8fb00d74c
Details
Created

2020-08-21 21:05:21 UTC

Size

295 MB

Content Digest
Environment
GOLANG_VERSION

1.15

GOPATH

/go

PATH

/go/bin:/usr/local/go/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin


Layers

[#000] sha256:b19305c328889ec69ec0d76e403c2cbc4603e5f27213a0e4d5f6597feefcf6e1 - 16.55% (48.8 MB)

[#001] sha256:31d9322a54f80129fd5cd69b7be3ac6ba44b9a0268afcbd10876508eb0f9264c - 2.58% (7.61 MB)

[#002] sha256:571a7f32100867eafa619a9265416538a2a374b88219902c6270b6f023d19061 - 3.34% (9.86 MB)

[#003] sha256:ec3ea04987808c324433cf4b1b813ccf6528f9bf603422fbee2725c1e4018eb8 - 17.28% (51 MB)

[#004] sha256:4c3a9b823cf68f4d55b8db75bbbafe8018b21b444b78e7eaeab85ee790d02848 - 23.79% (70.1 MB)

[#005] sha256:33d84e88be56d8b224ff96fed7d29ef057dacb215f0750b9505e2cc3e00feae7 - 32.54% (95.9 MB)

[#006] sha256:eb0cef2534152084d4ab239bfbcaecbbb406091a00a06aaca10d391c710d2990 - 0.0% (126 Bytes)

[#007] sha256:e21aa6cce3155df653b40055d839e640e15ae14afd2d51633f2485de949febaf - 2.28% (6.72 MB)

[#008] sha256:7a9c5e5ab085a939df2778bcdd1fbf87de0ccb336345f56ae4dd893ef1c0427a - 1.63% (4.81 MB)


History
2020-08-04 03:37:21 UTC

/bin/sh -c #(nop) ADD file:e8aac36755acd0915e9f9bae82fc8fcd0bbc3911ca4a5a40e104b2a4ebce44da in /

2020-08-04 03:37:21 UTC

/bin/sh -c #(nop) CMD ["bash"]

2020-08-04 08:06:39 UTC

/bin/sh -c apt-get update && apt-get install -y --no-install-recommends ca-certificates curl netbase wget && rm -rf /var/lib/apt/lists/*

2020-08-04 08:06:45 UTC

/bin/sh -c set -ex; if ! command -v gpg > /dev/null; then apt-get update; apt-get install -y --no-install-recommends gnupg dirmngr ; rm -rf /var/lib/apt/lists/*; fi

2020-08-04 08:07:10 UTC

/bin/sh -c apt-get update && apt-get install -y --no-install-recommends git mercurial openssh-client subversion procps && rm -rf /var/lib/apt/lists/*

2020-08-04 18:43:52 UTC

/bin/sh -c apt-get update && apt-get install -y --no-install-recommends g++ gcc libc6-dev make pkg-config && rm -rf /var/lib/apt/lists/*

2020-08-04 18:43:53 UTC

/bin/sh -c #(nop) ENV PATH=/usr/local/go/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

2020-08-12 00:38:27 UTC

/bin/sh -c #(nop) ENV GOLANG_VERSION=1.15

2020-08-12 00:38:47 UTC

/bin/sh -c set -eux; dpkgArch="$(dpkg --print-architecture)"; case "${dpkgArch##*-}" in amd64) goRelArch='linux-amd64'; goRelSha256='2d75848ac606061efe52a8068d0e647b35ce487a15bb52272c427df485193602' ;; armhf) goRelArch='linux-armv6l'; goRelSha256='6d8914ddd25f85f2377c269ccfb359acf53adf71a42cdbf53434a7c76fa7a9bd' ;; arm64) goRelArch='linux-arm64'; goRelSha256='7e18d92f61ddf480a4f9a57db09389ae7b9dadf68470d0cb9c00d734a0c57f8d' ;; i386) goRelArch='linux-386'; goRelSha256='68ce979083126694ceef60233f69efe870f54af24d81a120f76265107a9e9aab' ;; ppc64el) goRelArch='linux-ppc64le'; goRelSha256='4603736a158b3d8ac52b9245f39bf715936c801e05bb5ad7c44b1edd6d5ef6a2' ;; s390x) goRelArch='linux-s390x'; goRelSha256='8825f93caaf87465e32f298408c48b98d4180f3ddb885bd027f2926e711d23e8' ;; *) goRelArch='src'; goRelSha256='69438f7ed4f532154ffaf878f3dfd83747e7a00b70b3556eddabf7aaee28ac3a'; echo >&2; echo >&2 "warning: current architecture ($dpkgArch) does not have a corresponding Go binary release; will be building from source"; echo >&2 ;; esac; url="https://golang.org/dl/go${GOLANG_VERSION}.${goRelArch}.tar.gz"; wget -O go.tgz "$url" --progress=dot:giga; echo "${goRelSha256} *go.tgz" | sha256sum -c -; tar -C /usr/local -xzf go.tgz; rm go.tgz; if [ "$goRelArch" = 'src' ]; then savedAptMark="$(apt-mark showmanual)"; apt-get update; apt-get install -y --no-install-recommends golang-go; goEnv="$(go env | sed -rn -e '/^GO(OS|ARCH|ARM|386)=/s//export \0/p')"; eval "$goEnv"; [ -n "$GOOS" ]; [ -n "$GOARCH" ]; ( cd /usr/local/go/src; ./make.bash; ); apt-mark auto '.*' > /dev/null; apt-mark manual $savedAptMark > /dev/null; apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; rm -rf /var/lib/apt/lists/*; go install std; rm -rf /usr/local/go/pkg/*/cmd /usr/local/go/pkg/bootstrap /usr/local/go/pkg/obj /usr/local/go/pkg/tool/*/api /usr/local/go/pkg/tool/*/go_bootstrap /usr/local/go/src/cmd/dist/dist ; fi; go version

2020-08-12 00:38:47 UTC

/bin/sh -c #(nop) ENV GOPATH=/go

2020-08-12 00:38:48 UTC

/bin/sh -c #(nop) ENV PATH=/go/bin:/usr/local/go/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

2020-08-12 00:38:48 UTC

/bin/sh -c mkdir -p "$GOPATH/src" "$GOPATH/bin" && chmod -R 777 "$GOPATH"

2020-08-12 00:38:49 UTC

/bin/sh -c #(nop) WORKDIR /go

2020-08-21 21:05:17 UTC

/bin/sh -c #(nop) COPY file:fcf85ffed68c36dc13207bb743f44536ecb975c5582a098196ed96f9539c4bc0 in /usr/bin/

2020-08-21 21:05:21 UTC

/bin/sh -c #(nop) COPY file:4eb8d271995b06bf8b40b882b4026d53b6b62314605ee2ddbcb246a10a7024a5 in /usr/bin/

Danger Zone
Delete Tag

Please be careful as this will not just delete the reference but also the actual content!

For example when you have latest and v1.2.3 both pointing to the same image
the deletion of latest will also permanently remove v1.2.3.

Delete