-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDockerfile
More file actions
49 lines (44 loc) · 1.32 KB
/
Dockerfile
File metadata and controls
49 lines (44 loc) · 1.32 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
FROM ubuntu:bionic
MAINTAINER Kotaimen <kotaimen.c@gmail.com>
ENV DEBIAN_FRONTEND noninteractive
#
# Install packages
#
RUN set -x \
&& apt-get -q update \
&& apt-get -yq --no-install-recommends install \
locales \
ca-certificates \
curl \
build-essential \
gcc \
imagemagick \
libmapnik3.0 \
mapnik-utils \
\
python3 \
cython3 \
python3-pip \
python3-wheel \
python3-setuptools \
python3-dev \
python3-pil \
python3-numpy \
python3-scipy \
python3-pylibmc \
python3-skimage \
python3-gdal \
python3-mapnik \
python3-lxml \
\
npm
#
# Install carto
#
RUN set -x \
&& npm install -g carto millstone
#
# Patch missing gdal data file
#
RUN curl -sSL https://github.com/OSGeo/gdal/raw/2.2/gdal/data/esri_extra.wkt > \
/usr/share/gdal/2.2/esri_extra.wkt