Skip to content

Commit

Permalink
Merge pull request #364 from rustprooflabs/add-convert-extension
Browse files Browse the repository at this point in the history
Add convert extension into build. Update docker docs
  • Loading branch information
rustprooflabs authored Oct 12, 2023
2 parents f45b3f6 + 8061df1 commit 125bb4b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
7 changes: 6 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,12 @@ RUN git clone --depth 1 --branch $OSM2PGSQL_BRANCH https://github.com/openstreet

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
&& 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



WORKDIR /app
COPY . ./
Expand Down
2 changes: 1 addition & 1 deletion docs/src/docker-build.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ the PgOSM Flex image using `--no-cache`.


```bash
docker pull postgis/postgis:15-3.3
docker pull postgis/postgis:16-3.4
docker build --no-cache -t rustprooflabs/pgosm-flex:dev .
```

0 comments on commit 125bb4b

Please sign in to comment.