-
Notifications
You must be signed in to change notification settings - Fork 108
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #343 from pgpointcloud/docker_img_pg14
Use PG14 docker image
- Loading branch information
Showing
2 changed files
with
4 additions
and
4 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
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,7 +1,7 @@ | ||
FROM postgres:12 | ||
FROM postgres:14 | ||
MAINTAINER Paul Blottiere <[email protected]> | ||
|
||
ENV POSTGRES_VERSION 12 | ||
ENV POSTGRES_VERSION 14 | ||
ENV POSTGIS_VERSION 3 | ||
|
||
RUN apt-get update \ | ||
|
@@ -47,4 +47,4 @@ RUN apt-get update \ | |
libxml2-dev | ||
|
||
RUN mkdir -p /docker-entrypoint-initdb.d | ||
COPY ./initdb-pgpointcloud.sh /docker-entrypoint-initdb.d/10_pgpointcloud.sh | ||
COPY ./initdb-pgpointcloud.sh /docker-entrypoint-initdb.d/10_pgpointcloud.sh |