Namespace
continuumio
Image / Tag
anaconda3:2019.10-alpine
Content Digest
sha256:a640185c3a2c1ce1e90f359d23f06129d588468ca1dda29306ee0134f7753307
Details
Created

2019-10-15 20:32:09 UTC

Size

734 MB

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

Environment
ANACONDA_MD5

b77a71c3712b45c8f33c7b2ecade366c

ANACONDA_VERSION

2019.10

LANG

C.UTF-8

LC_ALL

C.UTF-8

PATH

/bin:/sbin:/usr/bin


Layers

[#000] sha256:e7c96db7181be991f19a9fb6975cdbbd73c65f4a2681348e63a141a2192a5f10 - 0.36% (2.63 MB)

[#001] sha256:ba132dd6f9edd146c092654c00aa251f5f704e5dcd766d9018ebd59c94bfb5a9 - 0.44% (3.2 MB)

[#002] sha256:e2a17b2271c78a43dd8c1026834f3b211f08978219f68b605b938ddd96ed3541 - 99.21% (729 MB)


History
2019-05-11 00:07:03 UTC

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

2019-05-11 00:07:03 UTC

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

2019-10-15 20:26:56 UTC

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

2019-10-15 20:26:56 UTC

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

2019-10-15 20:26:57 UTC

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

2019-10-15 20:26:58 UTC

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

2019-10-15 20:27:04 UTC

/bin/sh -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 "$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"

2019-10-15 20:27:05 UTC

/bin/sh -c #(nop) LABEL MAINTAINER=Anaconda, Inc

2019-10-15 20:27:06 UTC

/bin/sh -c #(nop) ENV ANACONDA_VERSION=2019.10

2019-10-15 20:27:07 UTC

/bin/sh -c #(nop) ENV ANACONDA_MD5=b77a71c3712b45c8f33c7b2ecade366c

2019-10-15 20:31:41 UTC

/bin/sh -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 -c anaconda.md5 | awk '{print $2}') != "OK" ] ; 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

2019-10-15 20:31:50 UTC

/bin/sh -c #(nop) USER 10151

2019-10-15 20:32:00 UTC

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

2019-10-15 20:32:09 UTC

/bin/sh -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