Skip to content

Commit

Permalink
compile wxPython after package installation
Browse files Browse the repository at this point in the history
  • Loading branch information
neteler committed Jul 30, 2019
1 parent 2e93549 commit 5c116c5
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions docker/Dockerfile_alpine_wxgui
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,7 @@ ENV PACKAGES="\
openblas-dev \
postgresql-dev \
python3-dev \
py-numpy-dev \
sqlite-dev \
tar \
tiff-dev \
Expand Down Expand Up @@ -134,9 +135,6 @@ RUN echo "Install Python";\
if [[ ! -e /usr/bin/python ]]; then ln -sf /usr/bin/$PYTHONBIN /usr/bin/python; fi && \
rm -r /root/.cache

# compile wxPython, unfortunately there is no Alpine package (yet) - slow....
RUN pip$PYTHON_VERSION install -U pathlib2 wxPython

# Add the packages
RUN echo "Install main packages";\
apk update; \
Expand All @@ -151,6 +149,9 @@ RUN echo "Install main packages";\
--virtual .build-deps $GRASS_BUILD_PACKAGES; \
# echo LANG="en_US.UTF-8" > /etc/default/locale;
#
# compile wxPython, unfortunately there is no Alpine package (yet) - compilation is slow, though!
RUN $PYTHONBIN -m pip install -U wxPython ;\
#
# install the latest projection library for GRASS GIS
#
echo "Install PROJ-$PROJ_VERSION";\
Expand Down

0 comments on commit 5c116c5

Please sign in to comment.