Namespace
continuumio
Image / Tag
miniconda3:4.8.3-alpine
Content Digest
sha256:e569cbfb20ded49bb92d9c012e133762dea820f0d630730b28ed169efac5fb8f
Details
Created

2020-12-01 21:09:55 UTC

Size

55.1 MB

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

Environment
CONDA_MD5

d63adf39f2c220950a063e0529d4ff74

CONDA_VERSION

4.8.3

LANG

C.UTF-8

LC_ALL

C.UTF-8

PATH

/bin:/sbin:/usr/bin


Layers

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

[#001] sha256:0d4f5c16e8dd27d858b81ce3f7af3abd19c319669e5d3fb17ee81af974bd4449 - 5.8% (3.2 MB)

[#002] sha256:901730b9993b92f0d7debd58cedeabc7b56ea4f647f1c8ce58eb4ce88524c344 - 89.4% (49.3 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"]

2020-12-01 21:09:23 UTC

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

2020-12-01 21:09:24 UTC

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

2020-12-01 21:09:25 UTC

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

2020-12-01 21:09:26 UTC

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

2020-12-01 21:09:32 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-12-01 21:09:33 UTC

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

2020-12-01 21:09:34 UTC

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

2020-12-01 21:09:35 UTC

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

2020-12-01 21:09:53 UTC

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

2020-12-01 21:09:54 UTC

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

2020-12-01 21:09:55 UTC

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

2020-12-01 21:09:55 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