Skip to content

Commit 4ead815

Browse files
committedMay 21, 2021
dockerfile - improved subpackage installation order and pip upgrade
1 parent 096d51c commit 4ead815

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
 

‎docker/eolearn.dockerfile

+3-3
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ RUN apt-get update && apt-get install -y \
1414
ENV CPLUS_INCLUDE_PATH=/usr/include/gdal
1515
ENV C_INCLUDE_PATH=/usr/include/gdal
1616

17+
RUN pip3 install --no-cache-dir pip --upgrade
1718
RUN pip3 install --no-cache-dir shapely --no-binary :all:
1819
RUN FORCE_CYTHON=1 pip install cartopy
1920

@@ -37,11 +38,10 @@ RUN pip3 install --no-cache-dir \
3738
./io[GEODB] \
3839
./mask \
3940
./ml_tools \
40-
./visualization \
41-
.
41+
./visualization[FULL]
4242

4343
RUN pip3 install --no-cache-dir \
44-
./visualization[FULL] \
44+
. \
4545
rtree \
4646
jupyter
4747

0 commit comments

Comments
 (0)
Please sign in to comment.