Update Dockerfile
Fixes: https://github.com/ckan/ckan-docker/issues/104 Adds `--chown` flag to `COPY` command in PostgreSQL Dockerfile to ensure that initialization files can be executed by `postgres` user.
This commit is contained in:
parent
b48be9783f
commit
d4723599ac
|
@ -1,4 +1,4 @@
|
|||
FROM postgres:12-alpine
|
||||
|
||||
# Include extra setup scripts (eg datastore)
|
||||
COPY docker-entrypoint-initdb.d /docker-entrypoint-initdb.d
|
||||
COPY --chown=postgres:postgres docker-entrypoint-initdb.d /docker-entrypoint-initdb.d
|
||||
|
|
Loading…
Reference in New Issue