-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
2 changed files
with
15 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
FROM debian:buster-slim | ||
|
||
ENV MAMBA_ROOT_PREFIX /root/micromamba | ||
ENV PATH $MAMBA_ROOT_PREFIX/bin:$PATH | ||
ARG VERSION=${VERSION:-1.1.5} | ||
|
||
RUN apt-get update && apt-get install -y git wget bash bzip2 zip curl && \ | ||
rm -r /var/lib/apt/lists/* && \ | ||
rm -r /var/cache/apt/* && \ | ||
wget -qO- https://api.anaconda.org/download/conda-forge/micromamba/0.8.2/linux-64/micromamba-0.8.2-he9b6cbd_0.tar.bz2 | tar -xvj -C /usr/local bin/micromamba && \ | ||
mkdir ${MAMBA_ROOT_PREFIX} && \ | ||
micromamba install -y --prefix ${MAMBA_ROOT_PREFIX} -c bioconda -c conda-forge \ | ||
jasminesv=${VERSION} && \ | ||
rm -r /root/micromamba/pkgs \ |