Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion scripts/build-postgres-alpine.sh
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ $DOCKER_OPTS $IMG_NAME /bin/sh -ex -c 'echo "Starting building postgres binaries
&& make -C contrib install \
\
&& if [ -n "$POSTGIS_VERSION" ]; then \
apk add --no-cache curl g++ json-c-dev linux-headers sqlite sqlite-dev sqlite-libs unzip \
apk add --no-cache curl g++ json-c-dev linux-headers sqlite sqlite-dev sqlite-libs unzip protobuf-c-compiler libprotobuf-dev libprotobuf-c-dev \
&& mkdir -p /usr/src/proj \
&& curl -sL "https://download.osgeo.org/proj/proj-$PROJ_VERSION.tar.gz" | tar -xzf - -C /usr/src/proj --strip-components 1 \
&& cd /usr/src/proj \
Expand Down
2 changes: 1 addition & 1 deletion scripts/build-postgres-debian.sh
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ $DOCKER_OPTS $IMG_NAME /bin/bash -ex -c 'echo "Starting building postgres binari
&& make -C contrib install \
\
&& if [ -n "$POSTGIS_VERSION" ]; then \
apt-get install -y --no-install-recommends curl libjson-c-dev libsqlite3-0 libsqlite3-dev sqlite3 unzip \
apt-get install -y --no-install-recommends curl libjson-c-dev libsqlite3-0 libsqlite3-dev sqlite3 unzip protobuf-c-compiler libprotobuf-dev libprotobuf-c-dev \
&& mkdir -p /usr/src/proj \
&& curl -sL "https://download.osgeo.org/proj/proj-$PROJ_VERSION.tar.gz" | tar -xzf - -C /usr/src/proj --strip-components 1 \
&& cd /usr/src/proj \
Expand Down