diff options
| author | Adam Janovsky | 2022-05-01 19:27:37 +0200 |
|---|---|---|
| committer | Adam Janovsky | 2022-05-01 19:27:37 +0200 |
| commit | 7cb9ca5d0fb425f4c3ada731cd917846f64a2d59 (patch) | |
| tree | ed2661aec6be9b993d1997e7de47b50b9ea371ad | |
| parent | d4760ca46ace74c48e27a383058cc8219c4ab2a5 (diff) | |
| download | sec-certs-7cb9ca5d0fb425f4c3ada731cd917846f64a2d59.tar.gz sec-certs-7cb9ca5d0fb425f4c3ada731cd917846f64a2d59.tar.zst sec-certs-7cb9ca5d0fb425f4c3ada731cd917846f64a2d59.zip | |
Binder now requires Jupyterlab as well
| -rw-r--r-- | docker/Dockerfile | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/docker/Dockerfile b/docker/Dockerfile index 2c138d46..02922496 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -19,8 +19,8 @@ RUN apt-get install default-jdk -y RUN apt-get install graphviz -y RUN adduser --disabled-password \ - --gecos "Default user" \ - ${USER} + --gecos "Default user" \ + ${USER} USER ${USER} WORKDIR ${HOME} @@ -40,10 +40,10 @@ ENV PATH="${VENV_PATH}/bin:$PATH" # Install dependencies, notebook is because of mybinder.org RUN \ - pip3 install -U pip && \ - pip3 install wheel && \ - pip3 install -r requirements/requirements.txt && \ - pip3 install --no-cache notebook + pip3 install -U pip && \ + pip3 install wheel && \ + pip3 install -r requirements/requirements.txt && \ + pip3 install --no-cache notebook jupyterlab # #just to be sure that pdftotext is in $PATH ENV PATH /usr/bin/pdftotext:${PATH} |
