Namespace
continuumio
Image / Tag
miniconda3:4.8.2-alpine
Content Digest
sha256:b9c9f2c7748abdb3291ef2e9b04a8ef3e355f0d7e8030e7a07b8f26c11ed88be
Details
Created

2020-03-12 19:36:27 UTC

Size

53.9 MB

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

Environment
CONDA_MD5

87e77f097f6ebb5127c77662dfc3165e

CONDA_VERSION

4.8.2

LANG

C.UTF-8

LC_ALL

C.UTF-8

PATH

/bin:/sbin:/usr/bin


Layers

[#000] sha256:9123ac7c32f74759e6283f04dbf571f18246abe5bb2c779efcb32cd50f3ff13c - 4.89% (2.64 MB)

[#001] sha256:bff6c3c63684a94513d46a1bfeec94007487bb5eca820cd067b80a03220c106d - 5.93% (3.2 MB)

[#002] sha256:2b4ab1627b7efb0657202152876c04fc5e0d81dfdf05898433e5daf9fd176939 - 89.17% (48 MB)


History
2020-01-23 16:53:17 UTC

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

2020-01-23 16:53:17 UTC

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

2020-03-12 19:35:39 UTC

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

2020-03-12 19:35:39 UTC

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

2020-03-12 19:35:40 UTC

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

2020-03-12 19:35:41 UTC

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

2020-03-12 19:35:48 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"

2020-03-12 19:35:48 UTC

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

2020-03-12 19:35:49 UTC

/bin/sh -c #(nop) ENV CONDA_VERSION=4.8.2

2020-03-12 19:35:50 UTC

/bin/sh -c #(nop) ENV CONDA_MD5=87e77f097f6ebb5127c77662dfc3165e

2020-03-12 19:36:22 UTC

/bin/sh -c addgroup -S anaconda && adduser -D -u 10151 anaconda -G anaconda && wget --quiet https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh && echo "${CONDA_MD5} Miniconda3-latest-Linux-x86_64.sh" > miniconda.md5 && if [ $(md5sum -c miniconda.md5 | awk '{print $2}') != "OK" ] ; then exit 1; fi && mv Miniconda3-latest-Linux-x86_64.sh miniconda.sh && mkdir -p /opt && sh ./miniconda.sh -b -p /opt/conda && rm miniconda.sh miniconda.md5 && ln -s /opt/conda/etc/profile.d/conda.sh /etc/profile.d/conda.sh && chown -R anaconda: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

2020-03-12 19:36:24 UTC

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

2020-03-12 19:36:25 UTC

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

2020-03-12 19:36:27 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