Merge pull request #21 from Jhaaji/patch-1

Update Dockerfile with correct syntax for environment variable PATH
This commit is contained in:
HuiwenShi
2025-06-15 18:36:18 +08:00
committed by GitHub

View File

@@ -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"]
CMD ["/bin/bash"]