From d7b1d704176946e01cd0ab5c44641ca20a076459 Mon Sep 17 00:00:00 2001 From: "Jonathan C. McKinney" Date: Mon, 8 Apr 2024 14:29:48 -0700 Subject: [PATCH] fix path --- docker_build_script_ubuntu.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker_build_script_ubuntu.sh b/docker_build_script_ubuntu.sh index 4d8eeb3fb..0c9170a4e 100755 --- a/docker_build_script_ubuntu.sh +++ b/docker_build_script_ubuntu.sh @@ -32,7 +32,7 @@ wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh && \ mkdir -p /h2ogpt_conda && \ bash ./Miniconda3-latest-Linux-x86_64.sh -b -u -p /h2ogpt_conda && \ conda update -n base conda && \ - source /workspace/etc/profile.d/conda.sh && \ + source /h2ogpt_conda/etc/profile.d/conda.sh && \ conda create -n h2ogpt -y && \ conda activate h2ogpt && \ conda install python=3.10 pygobject weasyprint -c conda-forge -y && \