Namespace
continuumio
Image / Tag
anaconda3:2021.04-alpine
Content Digest
sha256:bafae26840ba3a1c3432359fd01bd5c203665607a8e3b4fbe6a948ed14a4cdd9
Details
Created

2021-05-11 19:31:32 UTC

Size

778 MB

Content Digest
Labels
  • maintainer
    Anaconda, Inc
  • src
    https://github.com/frol/docker-alpine-glibc

Environment
ANACONDA_MD5

230f2c3c343ee58073bf41bd896dd76c

ANACONDA_VERSION

2021.04

LANG

C.UTF-8

LC_ALL

C.UTF-8

PATH

/bin:/sbin:/usr/bin


Layers

[#000] sha256:31603596830fc7e56753139f9c2c6bd3759e48a850659506ebfb885d1cf3aef5 - 0.34% (2.64 MB)

[#001] sha256:a8c45756cd30b46fbc3976da591bb6b33a2e27f22e8239237e40eb723f924c83 - 0.41% (3.2 MB)

[#002] sha256:541e6e10095499db05c5b1d596660b922085d0370c2678622aaa1c6cf61946d6 - 99.25% (773 MB)


History
2020-04-24 01:05:35 UTC

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

2020-04-24 01:05:35 UTC

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

2021-05-11 19:28:43 UTC

/bin/sh -c #(nop) LABEL maintainer=Vlad Frolov

2021-05-11 19:28:44 UTC

/bin/sh -c #(nop) LABEL src=https://github.com/frol/docker-alpine-glibc

2021-05-11 19:28:45 UTC

/bin/sh -c #(nop) ENV LANG=C.UTF-8 LC_ALL=C.UTF-8

2021-05-11 19:28:46 UTC

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

2021-05-11 19:28:47 UTC

/bin/ash -eo pipefail -c #(nop) SHELL [/bin/ash -eo pipefail -c]

2021-05-11 19:28:53 UTC

/bin/ash -eo pipefail -c ALPINE_GLIBC_BASE_URL="https://github.com/sgerrand/alpine-pkg-glibc/releases/download" && ALPINE_GLIBC_PACKAGE_VERSION="2.28-r0" && ALPINE_GLIBC_BASE_PACKAGE_FILENAME="glibc-$ALPINE_GLIBC_PACKAGE_VERSION.apk" && ALPINE_GLIBC_BIN_PACKAGE_FILENAME="glibc-bin-$ALPINE_GLIBC_PACKAGE_VERSION.apk" && ALPINE_GLIBC_I18N_PACKAGE_FILENAME="glibc-i18n-$ALPINE_GLIBC_PACKAGE_VERSION.apk" && apk add --no-cache --virtual=.build-dependencies wget ca-certificates && echo "-----BEGIN PUBLIC KEY----- MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEApZ2u1KJKUu/fW4A25y9m y70AGEa/J3Wi5ibNVGNn1gT1r0VfgeWd0pUybS4UmcHdiNzxJPgoWQhV2SSW1JYu tOqKZF5QSN6X937PTUpNBjUvLtTQ1ve1fp39uf/lEXPpFpOPL88LKnDBgbh7wkCp m2KzLVGChf83MS0ShL6G9EQIAUxLm99VpgRjwqTQ/KfzGtpke1wqws4au0Ab4qPY KXvMLSPLUp7cfulWvhmZSegr5AdhNw5KNizPqCJT8ZrGvgHypXyiFvvAH5YRtSsc Zvo9GI2e2MaZyo9/lvb+LbLEJZKEQckqRj4P26gmASrZEPStwc+yqy1ShHLA0j6m 1QIDAQAB -----END PUBLIC KEY-----" | sed 's/ */\n/g' > "/etc/apk/keys/sgerrand.rsa.pub" && wget -q "$ALPINE_GLIBC_BASE_URL/$ALPINE_GLIBC_PACKAGE_VERSION/$ALPINE_GLIBC_BASE_PACKAGE_FILENAME" "$ALPINE_GLIBC_BASE_URL/$ALPINE_GLIBC_PACKAGE_VERSION/$ALPINE_GLIBC_BIN_PACKAGE_FILENAME" "$ALPINE_GLIBC_BASE_URL/$ALPINE_GLIBC_PACKAGE_VERSION/$ALPINE_GLIBC_I18N_PACKAGE_FILENAME" && apk add --no-cache "$ALPINE_GLIBC_BASE_PACKAGE_FILENAME" "$ALPINE_GLIBC_BIN_PACKAGE_FILENAME" "$ALPINE_GLIBC_I18N_PACKAGE_FILENAME" && rm "/etc/apk/keys/sgerrand.rsa.pub" && /usr/glibc-compat/bin/localedef --force --inputfile POSIX --charmap UTF-8 "$LANG" || true && echo "export LANG=$LANG" > /etc/profile.d/locale.sh && apk del glibc-i18n && rm "/root/.wget-hsts" && apk del .build-dependencies && rm "$ALPINE_GLIBC_BASE_PACKAGE_FILENAME" "$ALPINE_GLIBC_BIN_PACKAGE_FILENAME" "$ALPINE_GLIBC_I18N_PACKAGE_FILENAME"

2021-05-11 19:28:54 UTC

/bin/ash -eo pipefail -c #(nop) LABEL maintainer=Anaconda, Inc

2021-05-11 19:28:55 UTC

/bin/ash -eo pipefail -c #(nop) ENV ANACONDA_VERSION=2021.04

2021-05-11 19:28:56 UTC

/bin/ash -eo pipefail -c #(nop) ENV ANACONDA_MD5=230f2c3c343ee58073bf41bd896dd76c

2021-05-11 19:31:14 UTC

/bin/ash -eo pipefail -c addgroup -S anaconda && adduser -D -u 10151 anaconda -G anaconda && wget --quiet https://repo.continuum.io/archive/Anaconda3-$ANACONDA_VERSION-Linux-x86_64.sh -O anaconda.sh && echo "${ANACONDA_MD5} anaconda.sh" > anaconda.md5 && if ! md5sum -s -c anaconda.md5; then exit 1; fi && mkdir -p /opt && sh ./anaconda.sh -b -p /opt/conda && rm anaconda.sh anaconda.md5 && ln -s /opt/conda/etc/profile.d/conda.sh /etc/profile.d/conda.sh && chown -R anaconda /opt && echo ". /opt/conda/etc/profile.d/conda.sh" >> /home/anaconda/.profile && echo "conda activate base" >> /home/anaconda/.profile && find /opt/conda/ -follow -type f -name '*.a' -delete && find /opt/conda/ -follow -type f -name '*.js.map' -delete && /opt/conda/bin/conda clean -afy

2021-05-11 19:31:19 UTC

/bin/ash -eo pipefail -c #(nop) USER 10151

2021-05-11 19:31:25 UTC

/bin/ash -eo pipefail -c #(nop) ENV PATH=/bin:/sbin:/usr/bin

2021-05-11 19:31:32 UTC

/bin/ash -eo pipefail -c #(nop) CMD ["sh" "--login" "-i"]

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