Created
February 21, 2017 12:12
-
-
Save mattak/56f5ee298917a065832f321e1e98fad9 to your computer and use it in GitHub Desktop.
dockerfile for tileserver-mapnik
This file contains hidden or 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
FROM buildpack-deps:xenial | |
MAINTAINER Takuma Maruyama <[email protected]> | |
# Based on work by Petr Sloup | |
# node setup | |
# ------------------ | |
RUN groupadd --gid 1000 node \ | |
&& useradd --uid 1000 --gid node --shell /bin/bash --create-home node | |
# gpg keys listed at https://github.com/nodejs/node | |
RUN set -ex \ | |
&& for key in \ | |
9554F04D7259F04124DE6B476D5A82AC7E37093B \ | |
94AE36675C464D64BAFA68DD7434390BDBE9B9C5 \ | |
0034A06D9D9B0064CE8ADF6BF1747F4AD2306D93 \ | |
FD3A5288F042B6850C66B31F09FE44734EB7990E \ | |
71DCFD284A79C3B38668286BC97EC7A07EDE3FC1 \ | |
DD8F2338BAE7501E3DD5AC78C273792F7D83545D \ | |
B9AE9905FFD7803F25714661B63B535A4C206CA9 \ | |
C4F0DFFF4E8C1A8236409D08E73BC641CC11F4C8 \ | |
; do \ | |
gpg --keyserver ha.pool.sks-keyservers.net --recv-keys "$key"; \ | |
done | |
ENV NPM_CONFIG_LOGLEVEL info | |
ENV NODE_VERSION 6.9.5 | |
RUN curl -SLO "https://nodejs.org/dist/v$NODE_VERSION/node-v$NODE_VERSION-linux-x64.tar.xz" \ | |
&& curl -SLO "https://nodejs.org/dist/v$NODE_VERSION/SHASUMS256.txt.asc" \ | |
&& gpg --batch --decrypt --output SHASUMS256.txt SHASUMS256.txt.asc \ | |
&& grep " node-v$NODE_VERSION-linux-x64.tar.xz\$" SHASUMS256.txt | sha256sum -c - \ | |
&& tar -xJf "node-v$NODE_VERSION-linux-x64.tar.xz" -C /usr/local --strip-components=1 \ | |
&& rm "node-v$NODE_VERSION-linux-x64.tar.xz" SHASUMS256.txt.asc SHASUMS256.txt \ | |
&& ln -s /usr/local/bin/node /usr/local/bin/nodejs | |
# tiler setup | |
# ------------------ | |
# make sure the mapbox fonts are available on the system | |
RUN mkdir -p /tmp/mapbox-studio-default-fonts && \ | |
mkdir -p /fonts && \ | |
git clone https://github.com/mapbox/mapbox-studio-default-fonts.git /tmp/mapbox-studio-default-fonts && \ | |
cp /tmp/mapbox-studio-default-fonts/**/*.otf /fonts && \ | |
cp /tmp/mapbox-studio-default-fonts/**/*.ttf /fonts && \ | |
rm -rf /tmp/mapbox-studio-default-fonts | |
# download fonts required for osm bright | |
RUN wget -q -P /fonts https://github.com/aaronlidman/Toner-for-Tilemill/raw/master/toner4tilemill/fonts/Arial-Bold.ttf && \ | |
wget -q -P /fonts https://github.com/aaronlidman/Toner-for-Tilemill/raw/master/toner4tilemill/fonts/Arial-Regular.ttf && \ | |
wget -q -P /fonts https://github.com/aaronlidman/Toner-for-Tilemill/raw/master/toner4tilemill/fonts/Arial-Unicode-Bold-Italic.ttf && \ | |
wget -q -P /fonts https://github.com/aaronlidman/Toner-for-Tilemill/raw/master/toner4tilemill/fonts/Arial-Unicode-Bold.ttf && \ | |
wget -q -P /fonts https://github.com/aaronlidman/Toner-for-Tilemill/raw/master/toner4tilemill/fonts/Arial-Unicode-Italic.ttf && \ | |
wget -q -P /fonts https://github.com/aaronlidman/Toner-for-Tilemill/raw/master/toner4tilemill/fonts/Arial-Unicode-Regular.ttf | |
ENV MAPNIK_FONT_PATH=/fonts | |
RUN mkdir -p /usr/src/app && mkdir -p /project | |
WORKDIR /usr/src/app | |
# only install minimal amount of tessera packages | |
# be careful as some tessera packages collide with itself | |
RUN npm install \ | |
[email protected] \ | |
[email protected] \ | |
[email protected] \ | |
[email protected] \ | |
[email protected] \ | |
[email protected] | |
COPY / /usr/src/app | |
RUN npm install | |
VOLUME /data | |
ENV SOURCE_DATA_DIR=/data \ | |
DEST_DATA_DIR=/project \ | |
PORT=80 \ | |
MAPNIK_FONT_PATH=/fonts \ | |
DOMAINS= | |
EXPOSE 80 | |
CMD ["/usr/src/app/run.sh"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment