-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
17 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,18 @@ | ||
FROM postgres:14 | ||
ADD openstreetmap-postgres-init.sh /docker-entrypoint-initdb.d/ | ||
RUN apt-get update \ | ||
&& apt-get install -y \ | ||
postgresql-server-dev-14 \ | ||
make \ | ||
build-essential \ | ||
postgresql-14-postgis-3 \ | ||
&& apt-get clean && rm -rf /var/lib/apt/lists/* | ||
|
||
ADD functions/functions.sql /usr/local/share/osm-db-functions.sql | ||
ADD docker_postgres.sh /docker-entrypoint-initdb.d/ | ||
RUN mkdir -p db | ||
RUN mkdir -p lib | ||
ADD functions/ db/functions/ | ||
ADD lib/quad_tile/ lib/quad_tile/ | ||
RUN make -C db/functions/ | ||
RUN chown -R postgres lib/ | ||
RUN chown -R postgres db/ |
This file was deleted.
Oops, something went wrong.