From 92089ba56d50e57bd7e0c8bbbc24ccdc750624fc Mon Sep 17 00:00:00 2001 From: Aaron Louie Date: Thu, 7 May 2020 16:23:34 -0400 Subject: [PATCH] Prints git commit --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 87d8362..993f689 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ FROM postgres ARG GIT_COMMIT="" -CMD echo 'echo "git commit = ${GIT_COMMIT}"' >> ./initdb.sh +CMD echo 'echo "git commit = $GIT_COMMIT"' >> ./initdb.sh COPY ./initdb.sh /docker-entrypoint-initdb.d/initdb.sh EXPOSE 5432