From 24f650fdc19febf60c3002c125da897199f4e8a4 Mon Sep 17 00:00:00 2001 From: Andrew Harvey Date: Mon, 17 May 2021 23:30:49 +1000 Subject: refactor pipeline stages --- docker/build-osm.Dockerfile | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 docker/build-osm.Dockerfile (limited to 'docker/build-osm.Dockerfile') diff --git a/docker/build-osm.Dockerfile b/docker/build-osm.Dockerfile new file mode 100644 index 0000000..c557fe3 --- /dev/null +++ b/docker/build-osm.Dockerfile @@ -0,0 +1,10 @@ +FROM debian:unstable-slim +RUN apt-get -y update && apt-get -y install curl gnupg make wget unzip gdal-bin osmium-tool software-properties-common +RUN curl -fsSL https://deb.nodesource.com/setup_12.x | bash - +RUN curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - +RUN echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list +RUN apt-get -y update && apt-get -y install nodejs yarn +RUN wget -qO - https://qgis.org/downloads/qgis-2020.gpg.key | gpg --no-default-keyring --keyring gnupg-ring:/etc/apt/trusted.gpg.d/qgis-archive.gpg --import +RUN chmod a+r /etc/apt/trusted.gpg.d/qgis-archive.gpg +RUN add-apt-repository "deb https://qgis.org/debian unstable main" +RUN apt-get -y update && apt-get -y install qgis -- cgit v1.2.3