We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 91ca473 commit 5bae1dbCopy full SHA for 5bae1db
planet-notebook-docker/Dockerfile
@@ -5,6 +5,14 @@ FROM jupyter/minimal-notebook:414b5d749704
5
# install dependencies
6
COPY requirements.txt /tmp/requirements.txt
7
8
+# Required for opencv
9
+# https://github.com/conda-forge/pygridgen-feedstock/issues/10#issuecomment-365914605
10
+USER root
11
+RUN apt-get update && apt-get install -yq --no-install-recommends \
12
+ libgl1-mesa-glx \
13
+ && apt-get clean && rm -rf /var/lib/apt/lists/*
14
+USER $NB_UID
15
+
16
# without channel set to strict, a conflicting version of gdal
17
# is sometimes installed from the default channel
18
RUN conda config --set channel_priority strict && \
0 commit comments