From 9456e00e0b8f90a34ffea1858e60543d753edbcc Mon Sep 17 00:00:00 2001 From: Jordi Rosell Date: Thu, 29 Feb 2024 12:31:17 +0100 Subject: [PATCH] conda activate and bash --- conda.Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/conda.Dockerfile b/conda.Dockerfile index d25ca0a..938258b 100644 --- a/conda.Dockerfile +++ b/conda.Dockerfile @@ -9,10 +9,11 @@ RUN wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh \ && rm -f Miniconda3-latest-Linux-x86_64.sh \ && PATH="/root/miniconda/bin:$PATH" \ && conda install r-base r-dplyr r-purrr r-readr r-stringr r-ggplot2 r-janitor r-targets r-curl -y --quiet --channel=conda-forge + && conda config --set auto_activate_base true WORKDIR /workspace COPY _targets.R functions.R /workspace/ -CMD R -e "sessionInfo(); \ +CMD bash R -e "sessionInfo(); \ list.files(); \ targets::tar_make();" \ No newline at end of file