Skip to content

Merge dev to main, deploy latest #402

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
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
18 changes: 9 additions & 9 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM postgis/postgis:16-3.4
FROM postgis/postgis:17-3.5

LABEL maintainer="PgOSM Flex - https://github.com/rustprooflabs/pgosm-flex"

Expand All @@ -16,9 +16,9 @@ RUN apt-get update \
libboost-filesystem-dev libexpat1-dev zlib1g-dev \
libbz2-dev libpq-dev libproj-dev lua5.4 liblua5.4-dev \
python3 python3-distutils \
postgresql-server-dev-16 \
postgresql-server-dev-17 \
curl unzip \
postgresql-16-pgrouting \
postgresql-17-pgrouting \
nlohmann-json3-dev \
osmium-tool \
&& rm -rf /var/lib/apt/lists/*
Expand Down Expand Up @@ -51,12 +51,12 @@ RUN git clone --depth 1 --branch $OSM2PGSQL_BRANCH $OSM2PGSQL_REPO \
&& apt autoremove -y \
&& cd /tmp && rm -r /tmp/osm2pgsql

RUN wget https://github.com/rustprooflabs/pgdd/releases/download/0.5.1/pgdd_0.5.1_postgis_pg16_amd64.deb \
&& dpkg -i ./pgdd_0.5.1_postgis_pg16_amd64.deb \
&& rm ./pgdd_0.5.1_postgis_pg16_amd64.deb \
&& wget https://github.com/rustprooflabs/convert/releases/download/0.0.3/convert_0.0.3_postgis_pg16_amd64.deb \
&& dpkg -i ./convert_0.0.3_postgis_pg16_amd64.deb \
&& rm ./convert_0.0.3_postgis_pg16_amd64.deb
RUN wget https://github.com/rustprooflabs/pgdd/releases/download/0.6.0/pgdd_0.6.0_postgis_pg17_amd64.deb \
&& dpkg -i ./pgdd_0.6.0_postgis_pg17_amd64.deb \
&& rm ./pgdd_0.6.0_postgis_pg17_amd64.deb \
&& wget https://github.com/rustprooflabs/convert/releases/download/0.0.4/convert_0.0.4_postgis_pg17_amd64.deb \
&& dpkg -i ./convert_0.0.4_postgis_pg17_amd64.deb \
&& rm ./convert_0.0.4_postgis_pg17_amd64.deb



Expand Down
Loading