Namespace
continuumio
Image / Tag
miniconda3:4.7.10-alpine
Content Digest
sha256:355f73c4c0b8fa669f370b705afb18f8629791768c59d490f7512225a5e5d6a4
Details
Created

2019-08-22 19:37:19 UTC

Size

58.3 MB

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

Environment
CONDA_MD5

1c945f2b3335c7b2b15130b1b2dc5cf4

CONDA_VERSION

4.7.10

LANG

C.UTF-8

LC_ALL

C.UTF-8

PATH

/bin:/sbin:/usr/bin


Layers

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

[#001] sha256:89593e7a03e4638a617747806c6d776906e496afebc2c3a697bb1905c332aec3 - 5.48% (3.2 MB)

[#002] sha256:fc3f6797ad422b9881351202c4474f5341eb040b4640715acc26660eca9f44d2 - 90.01% (52.5 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-08-22 19:36:30 UTC

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

2019-08-22 19:36:31 UTC

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

2019-08-22 19:36:32 UTC

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

2019-08-22 19:36:33 UTC

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

2019-08-22 19:36:41 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-08-22 19:36:41 UTC

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

2019-08-22 19:36:42 UTC

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

2019-08-22 19:36:43 UTC

/bin/sh -c #(nop) ENV CONDA_MD5=1c945f2b3335c7b2b15130b1b2dc5cf4

2019-08-22 19:37:13 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-08-22 19:37:15 UTC

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

2019-08-22 19:37:17 UTC

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

2019-08-22 19:37:19 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