Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docker: update to Debian 12 and PDAL 2.5.5 #3062

Merged
merged 1 commit into from
Jun 23, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions docker/debian/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
FROM debian:stable
# currently Debian 11
# currently Debian 12

# docker run -it --rm debian:stable bash
# apt-get update && apt-get install lsb-release -y && lsb_release -a
Expand All @@ -11,7 +11,7 @@ ENV DEBIAN_FRONTEND noninteractive

# define versions to be used (PDAL is not available on Debian, so we compile it here)
# https://github.com/PDAL/PDAL/releases
ARG PDAL_VERSION=2.4.3
ARG PDAL_VERSION=2.5.5

SHELL ["/bin/bash", "-c"]

Expand Down Expand Up @@ -43,7 +43,6 @@ RUN apt-get update && apt-get upgrade -y && \
libjsoncpp-dev \
libnetcdf-dev \
libncurses5-dev \
libopenblas-base \
libopenblas-dev \
libopenjp2-7 \
libopenjp2-7-dev \
Expand Down Expand Up @@ -210,7 +209,7 @@ RUN rm -r /src/grass_build/.git
WORKDIR /scripts

# install external GRASS GIS session Python API
RUN pip3 install grass-session
RUN pip3 install grass-session --break-system-packages

# add GRASS GIS envs for python usage
ENV GISBASE "/usr/local/grass/"
Expand Down