We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1028214 commit e95ce85Copy full SHA for e95ce85
python-java/Dockerfile
@@ -20,8 +20,8 @@ RUN apt-get update -y \
20
&& apt-get clean
21
22
# setup conda
23
-RUN ANACONDA_SH=Anaconda3-2020.11-Linux-x86_64.sh wget -q https://repo.anaconda.com/archive/$ANACONDA_SH -O /tmp/$ANACONDA_SH \
24
- && /bin/bash /tmp/$ANACONDA_SH -b -p $CONDA_HOME \
+RUN wget -q https://repo.anaconda.com/archive/Anaconda3-2020.11-Linux-x86_64.sh -O /tmp/anaconda.sh \
+ && /bin/bash /tmp/anaconda.sh -b -p $CONDA_HOME \
25
&& $CONDA_HOME/bin/conda update -n root conda -y \
26
&& $CONDA_HOME/bin/pip install -U pip
27
0 commit comments