From e75088692f78840c590687636a7c726e9f9e7082 Mon Sep 17 00:00:00 2001 From: Aliaksandr Yakutovich Date: Mon, 8 Feb 2021 23:43:31 +0100 Subject: [PATCH] Fix 'no module named setuptools_rust' error. (#162) --- Dockerfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index c9ba0951..a85eb6d9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -29,10 +29,13 @@ RUN apt-get update && apt-get install -y \ npm \ && rm -rf /var/lib/apt/lists/* +# Upgrade pip. +RUN /usr/bin/python3 -m pip install -U pip + # Install Jupyter-related things in the root environment. RUN /usr/bin/pip3 install \ 'jupyterhub==1.3.0' \ - 'jupyterlab==3.0.5' \ + 'jupyterlab==3.0.6' \ 'notebook==6.2.0' # Install ngrok to be able to proxy AiiDA RESTful API server.