-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
17c735d
commit bab2297
Showing
1 changed file
with
4 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,15 @@ | ||
# docker image containing all tools in order to transform a GeoTIFF into a PNG terrain tileset | ||
|
||
FROM osgeo/gdal:ubuntu-small-latest | ||
# docker image containing all tools in order to transform a GeoTIFF into a PNG terrain tileset | ||
|
||
LABEL MAINTAINER thomas.halwax@syncpoint.io | ||
|
||
ENV LANG=C.UTF-8 | ||
ENV LC_ALL=C.UTF-8 | ||
## install pip3 and Mapbox's RasterIO (rio) | ||
## install plugins for rio from https://github.com/mapbox/rasterio/wiki/Rio-plugin-registry | ||
RUN apt-get -y update && apt-get install -y --fix-missing python3-pip vim \ | ||
RUN apt-get -y update && apt-get install -y --fix-missing python3-pip vim proj-bin \ | ||
&& pip3 install rasterio \ | ||
&& pip3 install rio-rgbify \ | ||
&& pip3 install rio-mbtiles \ | ||
&& pip3 install mbutil \ | ||
&& apt-get clean |