From 2c751be98dde1f1b989e7a424985265f2cd51890 Mon Sep 17 00:00:00 2001 From: Jan Clemens Date: Thu, 9 Feb 2023 20:20:55 +0100 Subject: [PATCH] Update Dockerfile --- Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index ecff398..2ecbd18 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,8 @@ FROM continuumio/miniconda3:4.7.10 LABEL "repository"="https://github.com/janclemenslab/conda-build-publish-action" LABEL "maintainer"="Jan Clemens" -RUN conda install -y anaconda-client conda-build boa conda-verify pip git conda mamba -c conda-forge -RUN conda --set anaconda_upload yes --set always_yes yes --set changeps1 no +RUN conda install -n base conda-libmamba-solver +RUN conda config --set anaconda_upload yes --set always_yes yes --set changeps1 no --set solver libmamba +RUN conda install -y anaconda-client conda-build boa conda-verify pip git -c conda-forge COPY entrypoint.sh /entrypoint.sh ENTRYPOINT ["/entrypoint.sh"]