Skip to content

Commit

Permalink
Fix mamba
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxiBoether committed Dec 10, 2024
1 parent 1e86511 commit 610800c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docker/Dependencies/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -55,12 +55,12 @@ RUN git clone --recurse-submodules -b v1.59.2 --depth 1 --shallow-submodules htt
make -j8 && make install && cd ../../

# Install mamba
ENV CONDA_DIR /opt/mamba
ENV MAMBA_DIR /opt/mamba
ENV CONDA_DIR=/opt/mamba
ENV MAMBA_DIR=/opt/mamba
RUN wget "https://github.com/conda-forge/miniforge/releases/latest/download/Mambaforge-$(uname)-$(uname -m).sh" -O ~/mamba.sh && \
/bin/bash ~/mamba.sh -b -p /opt/mamba
ENV PATH=$CONDA_DIR/bin:$PATH
RUN mamba update -n base -c defaults mamba && mamba update --all && mamba init bash
RUN mamba update -n base -c defaults mamba && mamba update --all && mamba shell init bash

# Install dependencies
COPY ./environment.yml /tmp/environment.yml
Expand Down

0 comments on commit 610800c

Please sign in to comment.