From 8afddebeb42d9b2db3259d250a730c4ece6811e2 Mon Sep 17 00:00:00 2001 From: Jhaaji <52632025+Jhaaji@users.noreply.github.com> Date: Sun, 15 Jun 2025 13:13:59 +0530 Subject: [PATCH] Update Dockerfile Fixed environment variable PATH syntax in Dockerfile --- docker/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index 288ec24..471c8c6 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -40,7 +40,7 @@ RUN conda init bash # create and activate conda environment RUN conda create -n hunyuan3d21 python=3.10 && echo "source activate hunyuan3d21" > ~/.bashrc -ENV PATH /workspace/miniconda3/envs/hunyuan3d21/bin:$PATH +ENV PATH="/workspace/miniconda3/envs/hunyuan3d21/bin:${PATH}" # Set conda to always auto-approve RUN conda config --set always_yes true @@ -97,4 +97,4 @@ RUN rm -f /workspace/*.zip && \ rm -rf /var/lib/apt/lists/* # Set default command -CMD ["/bin/bash"] \ No newline at end of file +CMD ["/bin/bash"]