From b65928acfa7ef7eb4b20be1d950c76a9752cce42 Mon Sep 17 00:00:00 2001 From: wholtz <7772011+wholtz@users.noreply.github.com> Date: Wed, 6 Nov 2024 00:13:45 +0000 Subject: [PATCH] Update to micromamba version 2.0.3 --- CHANGELOG.md | 4 ++++ alpine.Dockerfile | 2 +- debian.Dockerfile | 2 +- docs/conf.py | 2 +- examples/add_micromamba/Dockerfile | 2 +- examples/apt_install/Dockerfile | 2 +- examples/cmdline_spec/Dockerfile | 2 +- examples/generate_lock/generate_lock.sh | 2 +- examples/install_lock/Dockerfile | 2 +- examples/modify_username/Dockerfile | 2 +- examples/multi_env/Dockerfile | 2 +- examples/new_lock/Dockerfile | 2 +- examples/run_activate/Dockerfile | 2 +- examples/yaml_spec/Dockerfile | 2 +- fedora.Dockerfile | 2 +- 15 files changed, 18 insertions(+), 14 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index dd7df32..3114025 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,10 @@ This change log covers changes to the docker image and does not include [changes to the micromamba program](https://github.com/mamba-org/mamba/blob/main/CHANGELOG.md). +## 6 November 2024 + +- Updated to micromamba version 2.0.3 + ## 28 October 2024 - Update CUDA v12.6.1 images to CUDA v12.6.2 diff --git a/alpine.Dockerfile b/alpine.Dockerfile index 7025840..b0c42b6 100644 --- a/alpine.Dockerfile +++ b/alpine.Dockerfile @@ -4,7 +4,7 @@ ARG BASE_IMAGE=frolvlad/alpine-glibc:alpine-3.20 # curl and openssl installed FROM $BASE_IMAGE AS stage1 ARG TARGETARCH -ARG VERSION=2.0.2 +ARG VERSION=2.0.3 # hadolint ignore=DL3018 RUN apk add --no-cache \ bash \ diff --git a/debian.Dockerfile b/debian.Dockerfile index bf617a3..0c90eaf 100644 --- a/debian.Dockerfile +++ b/debian.Dockerfile @@ -4,7 +4,7 @@ ARG BASE_IMAGE=debian:12-slim # curl and openssl installed FROM $BASE_IMAGE AS stage1 ARG TARGETARCH -ARG VERSION=2.0.2 +ARG VERSION=2.0.3 RUN apt-get update && apt-get install -y --no-install-recommends \ bzip2 \ ca-certificates \ diff --git a/docs/conf.py b/docs/conf.py index c680a07..03bd4d4 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -9,7 +9,7 @@ project = 'micromamba-docker' copyright = '2023-2024, micromamba documentation contributors' author = 'micromamba documentation contributors' -release = '2.0.2' +release = '2.0.3' # -- General configuration --------------------------------------------------- # https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration diff --git a/examples/add_micromamba/Dockerfile b/examples/add_micromamba/Dockerfile index b416bd2..12fb11e 100644 --- a/examples/add_micromamba/Dockerfile +++ b/examples/add_micromamba/Dockerfile @@ -1,5 +1,5 @@ # bring in the micromamba image so we can copy files from it -FROM mambaorg/micromamba:2.0.2 as micromamba +FROM mambaorg/micromamba:2.0.3 as micromamba # This is the image we are going add micromaba to: FROM tomcat:9-jdk17-temurin-focal diff --git a/examples/apt_install/Dockerfile b/examples/apt_install/Dockerfile index 3108a47..14e47cf 100644 --- a/examples/apt_install/Dockerfile +++ b/examples/apt_install/Dockerfile @@ -1,4 +1,4 @@ -FROM mambaorg/micromamba:2.0.2 +FROM mambaorg/micromamba:2.0.3 COPY --chown=$MAMBA_USER:$MAMBA_USER env.yaml /tmp/env.yaml RUN micromamba install -y -n base -f /tmp/env.yaml && \ diff --git a/examples/cmdline_spec/Dockerfile b/examples/cmdline_spec/Dockerfile index 6d69db2..ed7edc0 100644 --- a/examples/cmdline_spec/Dockerfile +++ b/examples/cmdline_spec/Dockerfile @@ -1,4 +1,4 @@ -FROM mambaorg/micromamba:2.0.2 +FROM mambaorg/micromamba:2.0.3 RUN micromamba install -y -n base -c conda-forge \ pyopenssl=20.0.1 \ diff --git a/examples/generate_lock/generate_lock.sh b/examples/generate_lock/generate_lock.sh index 93860c0..be1dc6a 100644 --- a/examples/generate_lock/generate_lock.sh +++ b/examples/generate_lock/generate_lock.sh @@ -1,4 +1,4 @@ docker run --rm -v "$(pwd):/tmp" \ - mambaorg/micromamba:2.0.2 /bin/bash -c "\ + mambaorg/micromamba:2.0.3 /bin/bash -c "\ micromamba create --yes --name new_env --file env.yaml \ && micromamba env export --name new_env --explicit" > env.lock diff --git a/examples/install_lock/Dockerfile b/examples/install_lock/Dockerfile index be13b10..9353276 100644 --- a/examples/install_lock/Dockerfile +++ b/examples/install_lock/Dockerfile @@ -1,4 +1,4 @@ -FROM mambaorg/micromamba:2.0.2 +FROM mambaorg/micromamba:2.0.3 COPY --chown=$MAMBA_USER:$MAMBA_USER env.lock /tmp/env.lock RUN micromamba install --name base --yes --file /tmp/env.lock \ diff --git a/examples/modify_username/Dockerfile b/examples/modify_username/Dockerfile index 56d6c6d..daa2c15 100644 --- a/examples/modify_username/Dockerfile +++ b/examples/modify_username/Dockerfile @@ -1,4 +1,4 @@ -FROM mambaorg/micromamba:2.0.2 +FROM mambaorg/micromamba:2.0.3 ARG NEW_MAMBA_USER=new-username ARG NEW_MAMBA_USER_ID=57440 diff --git a/examples/multi_env/Dockerfile b/examples/multi_env/Dockerfile index d5c7623..6be5e63 100644 --- a/examples/multi_env/Dockerfile +++ b/examples/multi_env/Dockerfile @@ -1,4 +1,4 @@ -FROM mambaorg/micromamba:2.0.2 +FROM mambaorg/micromamba:2.0.3 COPY --chown=$MAMBA_USER:$MAMBA_USER env1.yaml /tmp/env1.yaml COPY --chown=$MAMBA_USER:$MAMBA_USER env2.yaml /tmp/env2.yaml diff --git a/examples/new_lock/Dockerfile b/examples/new_lock/Dockerfile index f27d6a3..b71e428 100644 --- a/examples/new_lock/Dockerfile +++ b/examples/new_lock/Dockerfile @@ -1,4 +1,4 @@ -FROM mambaorg/micromamba:2.0.2 +FROM mambaorg/micromamba:2.0.3 COPY --chown=$MAMBA_USER:$MAMBA_USER env.lock /tmp/env.lock RUN micromamba create --name my_env_name --yes --file /tmp/env.lock \ diff --git a/examples/run_activate/Dockerfile b/examples/run_activate/Dockerfile index 8582f20..ffbfb8e 100644 --- a/examples/run_activate/Dockerfile +++ b/examples/run_activate/Dockerfile @@ -1,4 +1,4 @@ -FROM mambaorg/micromamba:2.0.2 +FROM mambaorg/micromamba:2.0.3 COPY --chown=$MAMBA_USER:$MAMBA_USER env.yaml /tmp/env.yaml RUN micromamba install --yes --file /tmp/env.yaml && \ diff --git a/examples/yaml_spec/Dockerfile b/examples/yaml_spec/Dockerfile index 1ea542c..3864f7d 100644 --- a/examples/yaml_spec/Dockerfile +++ b/examples/yaml_spec/Dockerfile @@ -1,4 +1,4 @@ -FROM mambaorg/micromamba:2.0.2 +FROM mambaorg/micromamba:2.0.3 COPY --chown=$MAMBA_USER:$MAMBA_USER env.yaml /tmp/env.yaml RUN micromamba install -y -n base -f /tmp/env.yaml && \ diff --git a/fedora.Dockerfile b/fedora.Dockerfile index 908007a..d81f5cc 100644 --- a/fedora.Dockerfile +++ b/fedora.Dockerfile @@ -4,7 +4,7 @@ ARG BASE_IMAGE=public.ecr.aws/amazonlinux/amazonlinux:2023 # curl and openssl installed FROM $BASE_IMAGE AS stage1 ARG TARGETARCH -ARG VERSION=2.0.2 +ARG VERSION=2.0.3 # hadolint ignore=DL3033 RUN yum update -y && yum install -y \ bzip2 \