Namespace
continuumio
Image / Tag
miniconda3:4.7.12-alpine
Content Digest
sha256:7450f606db8566d03fa6780e3877d43c22dd48629e9384a53a4a7c3fe4d50b22
Details
Created

2019-10-16 20:38:24 UTC

Size

54.6 MB

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

Environment
CONDA_MD5

0dba759b8ecfc8948f626fa18785e3d8

CONDA_VERSION

4.7.12

LANG

C.UTF-8

LC_ALL

C.UTF-8

PATH

/bin:/sbin:/usr/bin


Layers

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

[#001] sha256:86782fac63d549e75d4a1851bee66ec5814994fa91181dab9c5afd911a020a14 - 5.85% (3.2 MB)

[#002] sha256:ce44781273c0f876f097b5bb4be71921cc9f14f05db30c2bf0c3efe6a738fef5 - 89.34% (48.8 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-16 20:37:43 UTC

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

2019-10-16 20:37:44 UTC

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

2019-10-16 20:37:45 UTC

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

2019-10-16 20:37:46 UTC

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

2019-10-16 20:37:53 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-16 20:37:54 UTC

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

2019-10-16 20:37:55 UTC

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

2019-10-16 20:37:56 UTC

/bin/sh -c #(nop) ENV CONDA_MD5=0dba759b8ecfc8948f626fa18785e3d8

2019-10-16 20:38:20 UTC

/bin/sh -c addgroup -S anaconda && adduser -D -u 10151 anaconda -G anaconda && wget --quiet https://repo.continuum.io/miniconda/Miniconda3-$CONDA_VERSION-Linux-x86_64.sh && echo "${CONDA_MD5} Miniconda3-$CONDA_VERSION-Linux-x86_64.sh" > miniconda.md5 && if [ $(md5sum -c miniconda.md5 | awk '{print $2}') != "OK" ] ; then exit 1; fi && mv Miniconda3-$CONDA_VERSION-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

2019-10-16 20:38:22 UTC

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

2019-10-16 20:38:23 UTC

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

2019-10-16 20:38:24 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