Skip to content
Snippets Groups Projects
Commit cf1e7e4d authored by calrama's avatar calrama
Browse files

[jupyterhub] install tensorflow via pypi (using our own pypi server)

parent bdb8945f
No related branches found
No related tags found
No related merge requests found
Pipeline #30664 passed
...@@ -18,8 +18,6 @@ RUN curl -sL https://deb.nodesource.com/setup_10.x | bash - && \ ...@@ -18,8 +18,6 @@ RUN curl -sL https://deb.nodesource.com/setup_10.x | bash - && \
openjdk-11-jre-headless && \ openjdk-11-jre-headless && \
apt-get clean apt-get clean
COPY --from=git.imp.fu-berlin.de:5000/bioroboticslab/robofish/docker/tensorflow:1.15.3 /opt/tensorflow/build/tensorflow-1.15.3-cp37-cp37m-linux_x86_64.whl /opt/tensorflow/tensorflow-1.15.3-cp37-cp37m-linux_x86_64.whl
RUN python3.7 -m pip --no-cache-dir install \ RUN python3.7 -m pip --no-cache-dir install \
jupyterlab \ jupyterlab \
jupyterhub \ jupyterhub \
...@@ -38,7 +36,7 @@ RUN mkdir -p ~/.venv && \ ...@@ -38,7 +36,7 @@ RUN mkdir -p ~/.venv && \
. ~/.venv/robofish/bin/activate && \ . ~/.venv/robofish/bin/activate && \
pip --no-cache-dir install --upgrade pip==20.1.1 && \ pip --no-cache-dir install --upgrade pip==20.1.1 && \
pip --no-cache-dir install --upgrade setuptools==49.1.0 && \ pip --no-cache-dir install --upgrade setuptools==49.1.0 && \
pip install /opt/tensorflow/tensorflow-1.15.3-cp37-cp37m-linux_x86_64.whl && \ pip install tensorflow==1.15.3 && \
pip --no-cache-dir install \ pip --no-cache-dir install \
wheel \ wheel \
scipy \ scipy \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment