Skip to content

Commit 0513bed

Browse files
committed
Merge branch 'update-2.3.2' into debian13
2 parents 7434389 + b62463e commit 0513bed

File tree

14 files changed

+14
-14
lines changed

14 files changed

+14
-14
lines changed

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.3.1
7+
ARG VERSION=2.3.2
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.3.1
7+
ARG VERSION=2.3.2
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.3.1'
12+
release = '2.3.2'
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.3.1 as micromamba
2+
FROM mambaorg/micromamba:2.3.2 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.3.1
1+
FROM mambaorg/micromamba:2.3.2
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.3.1
1+
FROM mambaorg/micromamba:2.3.2
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.3.1 /bin/bash -c "\
3+
mambaorg/micromamba:2.3.2 /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.3.1
1+
FROM mambaorg/micromamba:2.3.2
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.3.1
1+
FROM mambaorg/micromamba:2.3.2
22

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

examples/multi_env/Dockerfile

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

33
COPY --chown=$MAMBA_USER:$MAMBA_USER env1.yaml /tmp/env1.yaml
44
COPY --chown=$MAMBA_USER:$MAMBA_USER env2.yaml /tmp/env2.yaml

0 commit comments

Comments
 (0)