Skip to content

Commit 3e8d44b

Browse files
wholtzgithub-actions[bot]
authored andcommitted
Update to micromamba version 2.5.0
1 parent 9cd9db8 commit 3e8d44b

15 files changed

Lines changed: 18 additions & 14 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ This change log covers changes to the docker image and does not include
55

66
## 12 January 2026
77

8+
- Updated to micromamba version 2.5.0
9+
10+
## 12 January 2026
11+
812
- No longer clobber `$HOME` values passed via
913
`docker run -e HOME ...` (for `$HOME` values other than `/`).
1014

alpine.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ ARG BASE_IMAGE=frolvlad/alpine-glibc:alpine-3.22
44
# curl and openssl installed
55
FROM $BASE_IMAGE AS stage1
66
ARG TARGETARCH
7-
ARG VERSION=2.4.0
7+
ARG VERSION=2.5.0
88
# hadolint ignore=DL3018
99
RUN apk add --no-cache \
1010
bash \

debian.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ ARG BASE_IMAGE=debian:13-slim
44
# curl and openssl installed
55
FROM $BASE_IMAGE AS stage1
66
ARG TARGETARCH
7-
ARG VERSION=2.4.0
7+
ARG VERSION=2.5.0
88
RUN apt-get update && apt-get install -y --no-install-recommends \
99
bzip2 \
1010
ca-certificates \

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
project = 'micromamba-docker'
1010
copyright = '2023-2024, micromamba documentation contributors'
1111
author = 'micromamba documentation contributors'
12-
release = '2.4.0'
12+
release = '2.5.0'
1313

1414
# -- General configuration ---------------------------------------------------
1515
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration

examples/add_micromamba/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# bring in the micromamba image so we can copy files from it
2-
FROM mambaorg/micromamba:2.4.0 as micromamba
2+
FROM mambaorg/micromamba:2.5.0 as micromamba
33

44
# This is the image we are going add micromaba to:
55
FROM tomcat:9-jdk17-temurin-focal

examples/apt_install/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM mambaorg/micromamba:2.4.0
1+
FROM mambaorg/micromamba:2.5.0
22

33
COPY --chown=$MAMBA_USER:$MAMBA_USER env.yaml /tmp/env.yaml
44
RUN micromamba install -y -n base -f /tmp/env.yaml && \

examples/cmdline_spec/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM mambaorg/micromamba:2.4.0
1+
FROM mambaorg/micromamba:2.5.0
22

33
RUN micromamba install -y -n base -c conda-forge \
44
pyopenssl=24.3.0 \
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
docker run --rm -v "$(pwd):/tmp" \
22
"--platform=${DOCKER_PLATFORM}" \
3-
mambaorg/micromamba:2.4.0 /bin/bash -c "\
3+
mambaorg/micromamba:2.5.0 /bin/bash -c "\
44
micromamba create --yes --name new_env --file env.yaml \
55
&& micromamba env export --name new_env --explicit" > env.lock

examples/install_lock/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM mambaorg/micromamba:2.4.0
1+
FROM mambaorg/micromamba:2.5.0
22

33
COPY --chown=$MAMBA_USER:$MAMBA_USER env.lock /tmp/env.lock
44
RUN micromamba install --name base --yes --file /tmp/env.lock \

examples/modify_username/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM mambaorg/micromamba:2.4.0
1+
FROM mambaorg/micromamba:2.5.0
22

33
ARG NEW_MAMBA_USER=new-username
44
ARG NEW_MAMBA_USER_ID=57440

0 commit comments

Comments
 (0)