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.
2 parents d92943e + ff4aba1 commit 81c42faCopy full SHA for 81c42fa
planet-notebook-docker/Dockerfile
@@ -4,7 +4,11 @@ FROM jupyter/minimal-notebook:414b5d749704
4
5
# install dependencies
6
COPY requirements.txt /tmp/requirements.txt
7
-RUN conda install -y -c conda-forge --file /tmp/requirements.txt
+
8
+# without channel set to strict, a conflicting version of gdal
9
+# is sometimes installed from the default channel
10
+RUN conda config --set channel_priority strict && \
11
+ conda install -y -c conda-forge --file /tmp/requirements.txt
12
13
# Enable Jupyter extentions
14
RUN jupyter nbextension enable --py widgetsnbextension --sys-prefix && \
0 commit comments