Update Dockerfile
Fixed environment variable PATH syntax in Dockerfile
This commit is contained in:
@@ -40,7 +40,7 @@ RUN conda init bash
|
|||||||
|
|
||||||
# create and activate conda environment
|
# create and activate conda environment
|
||||||
RUN conda create -n hunyuan3d21 python=3.10 && echo "source activate hunyuan3d21" > ~/.bashrc
|
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
|
# Set conda to always auto-approve
|
||||||
RUN conda config --set always_yes true
|
RUN conda config --set always_yes true
|
||||||
@@ -97,4 +97,4 @@ RUN rm -f /workspace/*.zip && \
|
|||||||
rm -rf /var/lib/apt/lists/*
|
rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
# Set default command
|
# Set default command
|
||||||
CMD ["/bin/bash"]
|
CMD ["/bin/bash"]
|
||||||
|
|||||||
Reference in New Issue
Block a user