Skip to content

Commit

Permalink
Merge pull request #318 from headwaymaps/mkirk/asset-host
Browse files Browse the repository at this point in the history
make asset host configurable and default to something more reliable
  • Loading branch information
michaelkirk authored Feb 3, 2024
2 parents 6a16237 + d42ad80 commit cf20695
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Earthfile
Original file line number Diff line number Diff line change
Expand Up @@ -170,9 +170,10 @@ save-pelias-config:

save-tileserver-terrain:
FROM +downloader-base
RUN wget -nv https://data.maps.earth/terrain.mbtiles
ARG asset_root=https://github.com/headwaymaps/headway-data/raw/main/tiles/
RUN wget -nv ${asset_root}/terrain.mbtiles
SAVE ARTIFACT terrain.mbtiles AS LOCAL ./data/terrain.mbtiles
RUN wget -nv https://data.maps.earth/landcover.mbtiles
RUN wget -nv ${asset_root}/landcover.mbtiles
SAVE ARTIFACT landcover.mbtiles AS LOCAL ./data/landcover.mbtiles

images:
Expand Down

0 comments on commit cf20695

Please sign in to comment.