Skip to content

Commit

Permalink
docker: fix missing libraries in ubuntu wxgui Dockerfile (OSGeo#4268)
Browse files Browse the repository at this point in the history
* docker: fix missing library in ubuntu wxgui Dockerfile

Add `libgtk-3-dev` to fix

```
...
checking for GTK+ - version >= 3.0.0... Package gtk+-3.0 was not found in the pkg-config search path.
Perhaps you should add the directory containing `gtk+-3.0.pc'
to the PKG_CONFIG_PATH environment variable
No package 'gtk+-3.0' found
```

* also install 'python3-wxgtk4.0'
  • Loading branch information
neteler authored and Mahesh1998 committed Sep 19, 2024
1 parent 284c5c9 commit 2808b1a
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions docker/ubuntu_wxgui/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ RUN apt-get update && apt-get upgrade -y && \
libglu1-mesa-dev \
libgsl0-dev \
libgtk-3-0 \
libgtk-3-dev \
libjpeg-dev \
libjsoncpp-dev \
libnetcdf-dev \
Expand Down Expand Up @@ -93,6 +94,7 @@ RUN apt-get update && apt-get upgrade -y && \
python3-ply \
python3-setuptools \
python3-venv \
python3-wxgtk4.0 \
software-properties-common \
sqlite3 \
subversion \
Expand Down

0 comments on commit 2808b1a

Please sign in to comment.