The following commands: $ docker build -t tippecanoe:latest . raises ERROR: failed to solve: failed to read dockerfile: open Dockerfile: no such file or directory. It looks like this commit removed the Dockerfile.
After copying the previous Dockerfile to the main tippecanoe directory i've tried the following commands:
$ docker build -t tippecanoe:latest .
$ docker run -it --rm \
-v /tiledata:/data \
tippecanoe:latest \
tippecanoe --output=/data/output.mbtiles /data/example.geojson
which raises these errors:
tippecanoe: /lib/x86_64-linux-gnu/libstdc++.so.6: version `GLIBCXX_3.4.32' not found (required by tippecanoe)
tippecanoe: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.38' not found (required by tippecanoe)
I tried this without success: apt-get install libstdc++6, sudo apt-get install libc6. Any idea on how to fix this ?
I'm running on WSL Ubuntu 24.04
The following commands:
$ docker build -t tippecanoe:latest .raisesERROR: failed to solve: failed to read dockerfile: open Dockerfile: no such file or directory. It looks like this commit removed the Dockerfile.After copying the previous Dockerfile to the main tippecanoe directory i've tried the following commands:
which raises these errors:
I tried this without success:
apt-get install libstdc++6,sudo apt-get install libc6. Any idea on how to fix this ?I'm running on WSL Ubuntu 24.04