From e6971dfdaf7135e326a57687d6f704a88c822a8e Mon Sep 17 00:00:00 2001 From: Matt Springfield Date: Tue, 23 May 2017 19:53:36 -0500 Subject: [PATCH] change permissions on init-db.sql to prevent permissions error on build --- db/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/db/Dockerfile b/db/Dockerfile index a1bde6bc..cf9e4cea 100644 --- a/db/Dockerfile +++ b/db/Dockerfile @@ -12,3 +12,4 @@ RUN apt-get update \ EXPOSE 5432 COPY init.sql /docker-entrypoint-initdb.d/init-db.sql +RUN chmod 644 /docker-entrypoint-initdb.d/init-db.sql