Skip to content

Commit 42fd569

Browse files
authored
Merge pull request #568 from mamba-org/update-2.0.5
Update to micromamba version 2.0.5
2 parents 7d357fd + 609fd08 commit 42fd569

File tree

15 files changed

+18
-14
lines changed

15 files changed

+18
-14
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
This change log covers changes to the docker image and does not include
44
[changes to the micromamba program](https://github.com/mamba-org/mamba/blob/main/CHANGELOG.md).
55

6+
## 16 December 2024
7+
8+
- Updated to micromamba version 2.0.5
9+
610
## 25 November 2024
711

812
- Updated to micromamba version 2.0.4

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.20
44
# curl and openssl installed
55
FROM $BASE_IMAGE AS stage1
66
ARG TARGETARCH
7-
ARG VERSION=2.0.4
7+
ARG VERSION=2.0.5
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:12-slim
44
# curl and openssl installed
55
FROM $BASE_IMAGE AS stage1
66
ARG TARGETARCH
7-
ARG VERSION=2.0.4
7+
ARG VERSION=2.0.5
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.0.4'
12+
release = '2.0.5'
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.0.4 as micromamba
2+
FROM mambaorg/micromamba:2.0.5 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.0.4
1+
FROM mambaorg/micromamba:2.0.5
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.0.4
1+
FROM mambaorg/micromamba:2.0.5
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,4 +1,4 @@
11
docker run --rm -v "$(pwd):/tmp" \
2-
mambaorg/micromamba:2.0.4 /bin/bash -c "\
2+
mambaorg/micromamba:2.0.5 /bin/bash -c "\
33
micromamba create --yes --name new_env --file env.yaml \
44
&& 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.0.4
1+
FROM mambaorg/micromamba:2.0.5
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.0.4
1+
FROM mambaorg/micromamba:2.0.5
22

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

0 commit comments

Comments
 (0)