File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -249,18 +249,19 @@ RUN curl -fL https://github.com/cdr/code-server/releases/download/v3.12.0/code-s
249
249
mv /usr/local/lib/code-server-3.12.0-linux-amd64 /usr/local/lib/code-server-3.12.0 && \
250
250
ln -s /usr/local/lib/code-server-3.12.0/bin/code-server /usr/local/bin/code-server
251
251
252
- RUN rm /usr/bin/python /usr/bin/ python3 && \
252
+ RUN rm /usr/bin/python3 && \
253
253
ln -s /usr/bin/python3.8 /usr/bin/python3 && \
254
+ ln -s /usr/bin/python3.8 /usr/bin/python && \
254
255
update-alternatives --install /usr/bin/python python /usr/bin/python3 1 && \
255
256
update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.8 2
256
257
257
258
WORKDIR /tmp
258
259
RUN curl https://bootstrap.pypa.io/get-pip.py | python3 && \
259
- python3 -m pip install --no-cache-dir -U setuptools pip
260
+ python3 -m pip install --no-cache-dir -U setuptools pip Cython pybind11
260
261
261
262
# OpenBlas
262
263
WORKDIR /tmp
263
- RUN git clone -q --branch=master git://github.com/xianyi/OpenBLAS.git && \
264
+ RUN git clone -q --branch=v0.3.18 git://github.com/xianyi/OpenBLAS.git && \
264
265
cd OpenBLAS && \
265
266
make DYNAMIC_ARCH=1 NO_AFFINITY=1 NUM_THREADS=48 FC=gfortran && \
266
267
make install
You can’t perform that action at this time.
0 commit comments