File tree Expand file tree Collapse file tree 2 files changed +4
-6
lines changed Expand file tree Collapse file tree 2 files changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -62,7 +62,6 @@ ENV LANG=$LANG
62
62
ENV SHELL=/bin/bash
63
63
64
64
# set /opt folder permissions for $DATASCIENCE_USER. Conda is going to live in this folder.
65
- ARG MINICONDA_VER=4.8.3
66
65
RUN chown $DATASCIENCE_USER /opt
67
66
68
67
USER $DATASCIENCE_USER
@@ -71,7 +70,7 @@ RUN curl -L https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.s
71
70
&& /bin/bash /home/datascience/miniconda.sh -f -b -p /opt/conda \
72
71
&& rm /home/datascience/miniconda.sh \
73
72
&& ls /opt/**/* \
74
- && /opt/conda/bin/conda install python=3.7 anaconda \
73
+ && /opt/conda/bin/conda install python=3.8 anaconda \
75
74
&& /opt/conda/bin/conda clean -yaf
76
75
77
76
WORKDIR /
@@ -91,7 +90,7 @@ WORKDIR /home/datascience
91
90
USER $DATASCIENCE_USER
92
91
93
92
####### WRAP UP ###############################
94
- RUN python -c 'import sys; assert(sys.version_info[:2]) == (3, 7 ), "Python 3.7 is not detected"'
93
+ RUN python -c 'import sys; assert(sys.version_info[:2]) == (3, 8 ), "Python 3.8 is not detected"'
95
94
WORKDIR /
96
95
97
96
RUN conda list
Original file line number Diff line number Diff line change @@ -107,7 +107,6 @@ ENV LANG=$LANG
107
107
ENV SHELL=/bin/bash
108
108
109
109
# set /opt folder permissions for $DATASCIENCE_USER. Conda is going to live in this folder.
110
- ARG MINICONDA_VER=4.8.3
111
110
RUN chown $DATASCIENCE_USER /opt
112
111
113
112
USER $DATASCIENCE_USER
@@ -116,7 +115,7 @@ RUN curl -L https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.s
116
115
&& /bin/bash /home/datascience/miniconda.sh -f -b -p /opt/conda \
117
116
&& rm /home/datascience/miniconda.sh \
118
117
&& ls /opt/**/* \
119
- && /opt/conda/bin/conda install python=3.7 anaconda \
118
+ && /opt/conda/bin/conda install python=3.8 anaconda \
120
119
&& /opt/conda/bin/conda clean -yaf
121
120
122
121
WORKDIR /
@@ -136,7 +135,7 @@ WORKDIR /home/datascience
136
135
USER $DATASCIENCE_USER
137
136
138
137
####### WRAP UP ###############################
139
- RUN python -c 'import sys; assert(sys.version_info[:2]) == (3, 7 ), "Python 3.7 is not detected"'
138
+ RUN python -c 'import sys; assert(sys.version_info[:2]) == (3, 8 ), "Python 3.8 is not detected"'
140
139
WORKDIR /
141
140
142
141
RUN conda list
You can’t perform that action at this time.
0 commit comments