Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to micromamba version 2.0.3 #560

Merged
merged 1 commit into from
Nov 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion alpine.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand Down
2 changes: 1 addition & 1 deletion debian.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion examples/add_micromamba/Dockerfile
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion examples/apt_install/Dockerfile
Original file line number Diff line number Diff line change
@@ -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 && \
Expand Down
2 changes: 1 addition & 1 deletion examples/cmdline_spec/Dockerfile
Original file line number Diff line number Diff line change
@@ -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 \
Expand Down
2 changes: 1 addition & 1 deletion examples/generate_lock/generate_lock.sh
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion examples/install_lock/Dockerfile
Original file line number Diff line number Diff line change
@@ -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 \
Expand Down
2 changes: 1 addition & 1 deletion examples/modify_username/Dockerfile
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion examples/multi_env/Dockerfile
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion examples/new_lock/Dockerfile
Original file line number Diff line number Diff line change
@@ -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 \
Expand Down
2 changes: 1 addition & 1 deletion examples/run_activate/Dockerfile
Original file line number Diff line number Diff line change
@@ -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 && \
Expand Down
2 changes: 1 addition & 1 deletion examples/yaml_spec/Dockerfile
Original file line number Diff line number Diff line change
@@ -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 && \
Expand Down
2 changes: 1 addition & 1 deletion fedora.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand Down