File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
ai-experiments/cuda-miniconda-pytorch Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -19,9 +19,8 @@ RUN apt-get update && apt-get install -y \
1919 && rm -rf /var/lib/apt/lists/*
2020
2121# Miniconda
22- RUN wget -O /tmp/miniconda.sh https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh \
22+ RUN wget -q - O /tmp/miniconda.sh https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh \
2323 && bash /tmp/miniconda.sh -b -p /opt/conda \
24- && yes | /opt/conda/bin/conda tos accept --override-channels --channel https://repo.anaconda.com/pkgs/main \
2524 && rm /tmp/miniconda.sh
2625ENV PATH="/opt/conda/bin:${PATH}"
2726
@@ -40,6 +39,8 @@ ENV TRANSFORMERS_CACHE=${WORKSPACE}/.cache/huggingface/transformers
4039WORKDIR ${WORKSPACE}
4140USER ${USER_NAME}
4241
42+ RUN yes | conda tos accept --override-channels --channel https://repo.anaconda.com/pkgs/main
43+
4344COPY ${PYTHON_ENV_SCRIPT} ${WORKSPACE}/environment_setup.sh
4445RUN bash -vxe ${WORKSPACE}/environment_setup.sh
4546
You can’t perform that action at this time.
0 commit comments