This is an automated email from the ASF dual-hosted git repository.
jgemignani pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/age.git
The following commit(s) were added to refs/heads/master by this push:
new a31408e6 Hotfix for Dockerfile #3
a31408e6 is described below
commit a31408e656ffa2fa2c1d6596c1ebf29935dd7164
Author: John Gemignani <[email protected]>
AuthorDate: Wed Jul 19 10:45:19 2023 -0700
Hotfix for Dockerfile #3
This fix removes the symbolic link to the new location for -
docker-entrypoint-initdb.d
It modifies the Dockerfile with the new location.
---
docker-entrypoint-initdb.d | 1 -
docker/Dockerfile | 2 +-
2 files changed, 1 insertion(+), 2 deletions(-)
diff --git a/docker-entrypoint-initdb.d b/docker-entrypoint-initdb.d
deleted file mode 120000
index 505da000..00000000
--- a/docker-entrypoint-initdb.d
+++ /dev/null
@@ -1 +0,0 @@
-docker-entrypoint-initdb.d
\ No newline at end of file
diff --git a/docker/Dockerfile b/docker/Dockerfile
index 031946c8..3537d02c 100644
--- a/docker/Dockerfile
+++ b/docker/Dockerfile
@@ -28,6 +28,6 @@ RUN apt-get install --assume-yes --no-install-recommends
--no-install-suggests \
COPY . /age
RUN cd /age && make install
-COPY docker-entrypoint-initdb.d/00-create-extension-age.sql
/docker-entrypoint-initdb.d/00-create-extension-age.sql
+COPY docker/docker-entrypoint-initdb.d/00-create-extension-age.sql
/docker-entrypoint-initdb.d/00-create-extension-age.sql
CMD ["postgres", "-c", "shared_preload_libraries=age"]