From b3bf4a371a8c597fb24b175bac5ca2a688c02d7c Mon Sep 17 00:00:00 2001 From: Young Date: Wed, 2 Oct 2024 10:20:49 -0600 Subject: [PATCH] Added '-f' to micromamba clean --- tbprofiler/6.3.0/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tbprofiler/6.3.0/Dockerfile b/tbprofiler/6.3.0/Dockerfile index 5c19b025e..d07f9cdfa 100644 --- a/tbprofiler/6.3.0/Dockerfile +++ b/tbprofiler/6.3.0/Dockerfile @@ -35,7 +35,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \ # install tb-profiler via bioconda; install into 'base' conda env RUN micromamba install --yes --name base --channel conda-forge --channel bioconda \ tb-profiler=${TBPROFILER_VER} && \ - micromamba clean --all --yes + micromamba clean --all --yes -f # hardcode 'base' env bin into PATH, so conda env does not have to be "activated" at run time ENV PATH="/opt/conda/bin:${PATH}"