Namespace
continuumio
Image / Tag
miniconda3:main
Content Digest
sha256:be562812bd2169f2873b316768887b7f951f9596c13529af611c038f26e029bd
Details
Created

2026-04-29 12:34:48 UTC

Size

258 MB

Content Digest
Labels
  • maintainer
    Anaconda, Inc
  • org.opencontainers.image.created
    2026-04-29T12:34:12.065Z
  • org.opencontainers.image.description
    Repository of Docker images created by Anaconda
  • org.opencontainers.image.licenses
  • org.opencontainers.image.revision
    ca6292ebe712abf73d24518b7e96f41ba8c2480f
  • org.opencontainers.image.source
    https://github.com/anaconda/docker-images
  • org.opencontainers.image.title
    docker-images
  • org.opencontainers.image.url
    https://github.com/anaconda/docker-images
  • org.opencontainers.image.version
    main

Environment
LANG

C.UTF-8

LC_ALL

C.UTF-8

PATH

/opt/conda/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin


Layers

[#000] sha256:3531af2bc2a9c8883754652783cf96207d53189db279c9637b7157d034de7ecd - 11.01% (28.4 MB)

[#001] sha256:31dcf5431d5af894b5cc80771b36c9bf4866f410da21974856a2162d24f7258a - 24.0% (61.9 MB)

[#002] sha256:1318256d877cd1f8045d5f57dc8a8db42fe7924267fa48cfaf30f5f5f0f44fbb - 0.0% (378 Bytes)

[#003] sha256:7aec775d6108abba89ad2bfd3c6676bb07b1906d5a10da9e36643c21f45941f0 - 65.0% (168 MB)


History
2026-04-21 00:00:00 UTC (debuerreotype 0.17)

# debian.sh --arch 'amd64' out/ 'trixie' '@1776729600'

2026-04-29 12:34:28 UTC (buildkit.dockerfile.v0)

LABEL maintainer=Anaconda, Inc

2026-04-29 12:34:28 UTC (buildkit.dockerfile.v0)

ENV LANG=C.UTF-8 LC_ALL=C.UTF-8

2026-04-29 12:34:28 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c apt-get update -q && apt-get install -q -y --no-install-recommends bzip2 ca-certificates git libglib2.0-0 libsm6 libxext6 libxrender1 mercurial openssh-client procps subversion wget && apt-get clean && rm -rf /var/lib/apt/lists/* # buildkit

2026-04-29 12:34:28 UTC (buildkit.dockerfile.v0)

ENV PATH=/opt/conda/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

2026-04-29 12:34:28 UTC (buildkit.dockerfile.v0)

ARG DEPRECATION_MESSAGE=::warning::This image is deprecated.\n\nUpdates to this image will be discontinued after version \`26.7.x\`. The latest Miniconda Docker images are available as \`anaconda/miniconda\`. For more information, visit: https://hub.docker.com/r/anaconda/miniconda\n

2026-04-29 12:34:28 UTC (buildkit.dockerfile.v0)

RUN |1 DEPRECATION_MESSAGE=::warning::This image is deprecated.\n\nUpdates to this image will be discontinued after version \`26.7.x\`. The latest Miniconda Docker images are available as \`anaconda/miniconda\`. For more information, visit: https://hub.docker.com/r/anaconda/miniconda\n /bin/sh -c printf '#!/bin/bash\nprintf "'%s'" >&2\nexec "$@"\n' "${DEPRECATION_MESSAGE}" > /usr/local/bin/docker-entrypoint.sh && chmod +x /usr/local/bin/docker-entrypoint.sh # buildkit

2026-04-29 12:34:28 UTC (buildkit.dockerfile.v0)

ENTRYPOINT ["/usr/local/bin/docker-entrypoint.sh"]

2026-04-29 12:34:28 UTC (buildkit.dockerfile.v0)

CMD ["/bin/bash"]

2026-04-29 12:34:28 UTC (buildkit.dockerfile.v0)

ARG INSTALLER_URL_LINUX64=https://repo.anaconda.com/miniconda/Miniconda3-py313_26.3.2-2-Linux-x86_64.sh

2026-04-29 12:34:28 UTC (buildkit.dockerfile.v0)

ARG SHA256SUM_LINUX64=2284bafb7863a23411b19874d216e237964d4b32dd9beb6807fa8b2d84570961

2026-04-29 12:34:28 UTC (buildkit.dockerfile.v0)

ARG INSTALLER_URL_AARCH64=https://repo.anaconda.com/miniconda/Miniconda3-py313_26.3.2-2-Linux-aarch64.sh

2026-04-29 12:34:28 UTC (buildkit.dockerfile.v0)

ARG SHA256SUM_AARCH64=81a5e828724478a7a036027a74356ceff0206147d3b1243c8ba32e0cfa187967

2026-04-29 12:34:48 UTC (buildkit.dockerfile.v0)

RUN |5 DEPRECATION_MESSAGE=::warning::This image is deprecated.\n\nUpdates to this image will be discontinued after version \`26.7.x\`. The latest Miniconda Docker images are available as \`anaconda/miniconda\`. For more information, visit: https://hub.docker.com/r/anaconda/miniconda\n INSTALLER_URL_LINUX64=https://repo.anaconda.com/miniconda/Miniconda3-py313_26.3.2-2-Linux-x86_64.sh SHA256SUM_LINUX64=2284bafb7863a23411b19874d216e237964d4b32dd9beb6807fa8b2d84570961 INSTALLER_URL_AARCH64=https://repo.anaconda.com/miniconda/Miniconda3-py313_26.3.2-2-Linux-aarch64.sh SHA256SUM_AARCH64=81a5e828724478a7a036027a74356ceff0206147d3b1243c8ba32e0cfa187967 /bin/sh -c set -x && UNAME_M="$(uname -m)" && if [ "${UNAME_M}" = "x86_64" ]; then INSTALLER_URL="${INSTALLER_URL_LINUX64}"; SHA256SUM="${SHA256SUM_LINUX64}"; elif [ "${UNAME_M}" = "aarch64" ]; then INSTALLER_URL="${INSTALLER_URL_AARCH64}"; SHA256SUM="${SHA256SUM_AARCH64}"; fi && wget "${INSTALLER_URL}" -O miniconda.sh -q && echo "${SHA256SUM} miniconda.sh" > shasum && sha256sum --check --status shasum && mkdir -p /opt && bash miniconda.sh -b -p /opt/conda && rm miniconda.sh shasum && ln -s /opt/conda/etc/profile.d/conda.sh /etc/profile.d/conda.sh && echo ". /opt/conda/etc/profile.d/conda.sh" >> ~/.bashrc && echo "conda activate" >> ~/.bashrc && /opt/conda/bin/conda tos accept && /opt/conda/bin/conda remove --force-remove -y conda-anaconda-tos && rm -rf ~/.conda/tos && 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 # buildkit

Details
Created

2026-04-29 12:44:51 UTC

Size

258 MB

Content Digest
Labels
  • maintainer
    Anaconda, Inc
  • org.opencontainers.image.created
    2026-04-29T12:34:12.065Z
  • org.opencontainers.image.description
    Repository of Docker images created by Anaconda
  • org.opencontainers.image.licenses
  • org.opencontainers.image.revision
    ca6292ebe712abf73d24518b7e96f41ba8c2480f
  • org.opencontainers.image.source
    https://github.com/anaconda/docker-images
  • org.opencontainers.image.title
    docker-images
  • org.opencontainers.image.url
    https://github.com/anaconda/docker-images
  • org.opencontainers.image.version
    main

Environment
LANG

C.UTF-8

LC_ALL

C.UTF-8

PATH

/opt/conda/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin


Layers

[#000] sha256:e4fb5f1cd4d4ee56da574ef5ed88a5c74f100ba98caacf6c5ef26cee66525179 - 11.13% (28.7 MB)

[#001] sha256:90c38f9ee845d6511bcd16903fbfb3d0f60f2c73d7f43d058d40a3997470c1c6 - 23.87% (61.6 MB)

[#002] sha256:87683b5ae0de2630c675fadd54649c51a7fa64b0de3ae5320864484ac0e84a68 - 0.0% (377 Bytes)

[#003] sha256:5475729c1d7d731eba51c8d65383630d9a311b5813e3dd26e22273a2943b52c7 - 65.0% (168 MB)


History
2026-04-21 00:00:00 UTC (debuerreotype 0.17)

# debian.sh --arch 'arm64' out/ 'trixie' '@1776729600'

2026-04-29 12:42:21 UTC (buildkit.dockerfile.v0)

LABEL maintainer=Anaconda, Inc

2026-04-29 12:42:21 UTC (buildkit.dockerfile.v0)

ENV LANG=C.UTF-8 LC_ALL=C.UTF-8

2026-04-29 12:42:21 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c apt-get update -q && apt-get install -q -y --no-install-recommends bzip2 ca-certificates git libglib2.0-0 libsm6 libxext6 libxrender1 mercurial openssh-client procps subversion wget && apt-get clean && rm -rf /var/lib/apt/lists/* # buildkit

2026-04-29 12:42:21 UTC (buildkit.dockerfile.v0)

ENV PATH=/opt/conda/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

2026-04-29 12:42:21 UTC (buildkit.dockerfile.v0)

ARG DEPRECATION_MESSAGE=::warning::This image is deprecated.\n\nUpdates to this image will be discontinued after version \`26.7.x\`. The latest Miniconda Docker images are available as \`anaconda/miniconda\`. For more information, visit: https://hub.docker.com/r/anaconda/miniconda\n

2026-04-29 12:42:21 UTC (buildkit.dockerfile.v0)

RUN |1 DEPRECATION_MESSAGE=::warning::This image is deprecated.\n\nUpdates to this image will be discontinued after version \`26.7.x\`. The latest Miniconda Docker images are available as \`anaconda/miniconda\`. For more information, visit: https://hub.docker.com/r/anaconda/miniconda\n /bin/sh -c printf '#!/bin/bash\nprintf "'%s'" >&2\nexec "$@"\n' "${DEPRECATION_MESSAGE}" > /usr/local/bin/docker-entrypoint.sh && chmod +x /usr/local/bin/docker-entrypoint.sh # buildkit

2026-04-29 12:42:21 UTC (buildkit.dockerfile.v0)

ENTRYPOINT ["/usr/local/bin/docker-entrypoint.sh"]

2026-04-29 12:42:21 UTC (buildkit.dockerfile.v0)

CMD ["/bin/bash"]

2026-04-29 12:42:21 UTC (buildkit.dockerfile.v0)

ARG INSTALLER_URL_LINUX64=https://repo.anaconda.com/miniconda/Miniconda3-py313_26.3.2-2-Linux-x86_64.sh

2026-04-29 12:42:21 UTC (buildkit.dockerfile.v0)

ARG SHA256SUM_LINUX64=2284bafb7863a23411b19874d216e237964d4b32dd9beb6807fa8b2d84570961

2026-04-29 12:42:21 UTC (buildkit.dockerfile.v0)

ARG INSTALLER_URL_AARCH64=https://repo.anaconda.com/miniconda/Miniconda3-py313_26.3.2-2-Linux-aarch64.sh

2026-04-29 12:42:21 UTC (buildkit.dockerfile.v0)

ARG SHA256SUM_AARCH64=81a5e828724478a7a036027a74356ceff0206147d3b1243c8ba32e0cfa187967

2026-04-29 12:44:51 UTC (buildkit.dockerfile.v0)

RUN |5 DEPRECATION_MESSAGE=::warning::This image is deprecated.\n\nUpdates to this image will be discontinued after version \`26.7.x\`. The latest Miniconda Docker images are available as \`anaconda/miniconda\`. For more information, visit: https://hub.docker.com/r/anaconda/miniconda\n INSTALLER_URL_LINUX64=https://repo.anaconda.com/miniconda/Miniconda3-py313_26.3.2-2-Linux-x86_64.sh SHA256SUM_LINUX64=2284bafb7863a23411b19874d216e237964d4b32dd9beb6807fa8b2d84570961 INSTALLER_URL_AARCH64=https://repo.anaconda.com/miniconda/Miniconda3-py313_26.3.2-2-Linux-aarch64.sh SHA256SUM_AARCH64=81a5e828724478a7a036027a74356ceff0206147d3b1243c8ba32e0cfa187967 /bin/sh -c set -x && UNAME_M="$(uname -m)" && if [ "${UNAME_M}" = "x86_64" ]; then INSTALLER_URL="${INSTALLER_URL_LINUX64}"; SHA256SUM="${SHA256SUM_LINUX64}"; elif [ "${UNAME_M}" = "aarch64" ]; then INSTALLER_URL="${INSTALLER_URL_AARCH64}"; SHA256SUM="${SHA256SUM_AARCH64}"; fi && wget "${INSTALLER_URL}" -O miniconda.sh -q && echo "${SHA256SUM} miniconda.sh" > shasum && sha256sum --check --status shasum && mkdir -p /opt && bash miniconda.sh -b -p /opt/conda && rm miniconda.sh shasum && ln -s /opt/conda/etc/profile.d/conda.sh /etc/profile.d/conda.sh && echo ". /opt/conda/etc/profile.d/conda.sh" >> ~/.bashrc && echo "conda activate" >> ~/.bashrc && /opt/conda/bin/conda tos accept && /opt/conda/bin/conda remove --force-remove -y conda-anaconda-tos && rm -rf ~/.conda/tos && 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 # buildkit

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