Skip to content

Commit

Permalink
#92 fix missing pip3 in Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
justb4 committed Apr 14, 2019
1 parent f77ced9 commit efe2564
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ RUN \
&& dpkg-reconfigure --frontend=noninteractive locales \
&& update-locale LANG=${LOCALE} \
# Install GDAL version matching installed binary - MESSY - need cleaner solution!
# && pip install GDAL==`gdalinfo --version | cut -d' ' -f2 | cut -d',' -f1` \
# && pip3 install GDAL==`gdalinfo --version | cut -d' ' -f2 | cut -d',' -f1` \
&& export CPLUS_INCLUDE_PATH=/usr/include/gdal \
&& export C_INCLUDE_PATH=/usr/include/gdal \
&& pip3 install GDAL==${GDAL_PYTHON_BINDINGS_VERSION} \
Expand All @@ -53,7 +53,7 @@ RUN \
then \
echo "No extra Pip packages to install" ;\
else \
pip install ${PYTHON_EXTRA_PIP_PACKAGES} ;\
pip3 install ${PYTHON_EXTRA_PIP_PACKAGES} ;\
fi \
# Install and Remove build-related packages for smaller image size
&& cd /stetl \
Expand Down

0 comments on commit efe2564

Please sign in to comment.