forked from postgis/docker-postgis
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Dockerfile.alpine.template
110 lines (105 loc) · 3.3 KB
/
Dockerfile.alpine.template
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
FROM postgres:%%PG_MAJOR%%-alpine3.14
LABEL maintainer="PostGIS Project - https://postgis.net"
ENV POSTGIS_VERSION %%POSTGIS_VERSION%%
ENV POSTGIS_SHA256 %%POSTGIS_SHA256%%
#Temporary fix:
# for PostGIS 2.* - building a special geos
# reason: PostGIS 2.5.5 is not working with GEOS 3.9.*
ENV POSTGIS2_GEOS_VERSION tags/3.8.2
RUN set -eux \
\
&& apk add --no-cache --virtual .fetch-deps \
ca-certificates \
openssl \
tar \
\
&& wget -O postgis.tar.gz "https://github.com/postgis/postgis/archive/$POSTGIS_VERSION.tar.gz" \
&& echo "$POSTGIS_SHA256 *postgis.tar.gz" | sha256sum -c - \
&& mkdir -p /usr/src/postgis \
&& tar \
--extract \
--file postgis.tar.gz \
--directory /usr/src/postgis \
--strip-components 1 \
&& rm postgis.tar.gz \
\
&& apk add --no-cache --virtual .build-deps \
autoconf \
automake \
clang-dev \
file \
g++ \
gcc \
gdal-dev \
gettext-dev \
json-c-dev \
libtool \
libxml2-dev \
llvm11-dev \
make \
pcre-dev \
perl \
proj-dev \
protobuf-c-dev \
\
# GEOS setup
&& if [ $(printf %.1s "$POSTGIS_VERSION") == 3 ]; then \
apk add --no-cache --virtual .build-deps-geos geos-dev cunit-dev ; \
elif [ $(printf %.1s "$POSTGIS_VERSION") == 2 ]; then \
apk add --no-cache --virtual .build-deps-geos cmake git ; \
cd /usr/src ; \
git clone https://github.com/libgeos/geos.git ; \
cd geos ; \
git checkout ${POSTGIS2_GEOS_VERSION} -b geos_build ; \
mkdir cmake-build ; \
cd cmake-build ; \
cmake -DCMAKE_BUILD_TYPE=Release .. ; \
make -j$(nproc) ; \
make check ; \
make install ; \
cd / ; \
rm -fr /usr/src/geos ; \
else \
echo ".... unknown PosGIS ...." ; \
fi \
\
# build PostGIS
\
&& cd /usr/src/postgis \
&& gettextize \
&& ./autogen.sh \
&& ./configure \
--with-pcredir="$(pcre-config --prefix)" \
&& make -j$(nproc) \
&& make install \
\
# regress check
&& mkdir /tempdb \
&& chown -R postgres:postgres /tempdb \
&& su postgres -c 'pg_ctl -D /tempdb init' \
&& su postgres -c 'pg_ctl -D /tempdb start' \
&& cd regress \
&& make -j$(nproc) check RUNTESTFLAGS=--extension PGUSER=postgres \
#&& make -j$(nproc) check RUNTESTFLAGS=--dumprestore PGUSER=postgres \
#&& make garden PGUSER=postgres \
&& su postgres -c 'pg_ctl -D /tempdb --mode=immediate stop' \
&& rm -rf /tempdb \
&& rm -rf /tmp/pgis_reg \
# add .postgis-rundeps
&& apk add --no-cache --virtual .postgis-rundeps \
gdal \
json-c \
libstdc++ \
pcre \
proj \
protobuf-c \
# Geos setup
&& if [ $(printf %.1s "$POSTGIS_VERSION") == 3 ]; then \
apk add --no-cache --virtual .postgis-rundeps-geos geos ; \
fi \
# clean
&& cd / \
&& rm -rf /usr/src/postgis \
&& apk del .fetch-deps .build-deps .build-deps-geos
COPY ./initdb-postgis.sh /docker-entrypoint-initdb.d/10_postgis.sh
COPY ./update-postgis.sh /usr/local/bin