Skip to content

Commit

Permalink
Alpine dockerfile: removed PDAL as removed from Alpine (#455)
Browse files Browse the repository at this point in the history
Co-authored-by: Markus Neteler <neteler@mundialis.de>
  • Loading branch information
neteler and neteler committed Mar 24, 2020
1 parent cd37b9b commit 59c9ae5
Showing 1 changed file with 4 additions and 12 deletions.
16 changes: 4 additions & 12 deletions docker/alpine/Dockerfile_alpine_wxgui
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ ENV GRASS_CONFIG="\
--with-cxx \
--with-proj --with-proj-share=/usr/share/proj \
--with-gdal \
--with-pdal \
--with-python \
--with-geos \
--with-sqlite \
Expand All @@ -29,6 +28,7 @@ ENV GRASS_CONFIG="\
--with-wxwidgets \
--with-postgres --with-postgres-includes='/usr/include/postgresql' \
--without-freetype \
--without-pdal \
--without-openmp \
--without-opengl \
--without-nls \
Expand Down Expand Up @@ -64,7 +64,6 @@ ENV PACKAGES="\
geos \
gnutls \
gtk+3.0 \
laszip \
libbz2 \
libjpeg-turbo \
libpng \
Expand All @@ -73,7 +72,6 @@ ENV PACKAGES="\
ncurses \
openjpeg \
openblas \
pdal \
py3-numpy \
py3-pillow \
py3-six \
Expand Down Expand Up @@ -102,14 +100,12 @@ ENV PACKAGES="\
geos-dev \
gnutls-dev \
gtk+3.0-dev \
laszip-dev \
libc6-compat \
libjpeg-turbo-dev \
libpng-dev \
make \
openjpeg-dev \
openblas-dev \
pdal-dev \
postgresql-dev \
proj-dev \
python3-dev \
Expand Down Expand Up @@ -216,15 +212,12 @@ RUN pip install grass-session
# set GRASSBIN
ENV GRASSBIN="/usr/local/bin/grass"

# ===========================
# TEST grass-session and PDAL
# ===========================
# ==================
# TEST grass-session
# ==================

WORKDIR /tmp
COPY docker/testdata/simple.laz .
WORKDIR /scripts
COPY docker/testdata/test_grass_session.py .
## just scan the LAZ file
# TODO: fix test
#RUN /usr/bin/python3 /scripts/test_grass_session.py

Expand All @@ -243,7 +236,6 @@ ENV GRASS_SKIP_MAPSET_OWNER_CHECK=1 \

# show installed version
RUN grass --tmp-location EPSG:4326 --exec g.version -rge && \
pdal --version && \
python3 --version

CMD [$GRASSBIN, "--version"]

0 comments on commit 59c9ae5

Please sign in to comment.