From 0edcbf931bf8d3f70a7daba1d0db268a83fe8006 Mon Sep 17 00:00:00 2001 From: Asif Bacchus Date: Fri, 27 Nov 2020 02:29:20 -0700 Subject: [PATCH] use chown instead of chmod... oops! --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index cea30e3..9f191f7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -44,7 +44,7 @@ COPY entrypoint.sh /usr/local/bin/entrypoint.sh RUN mkdir -p /docker-entrypoint-preinit.d \ && mkdir -p /docker-entrypoint-initdb.d \ && mkdir -p /docker-entrypoint-postinit.d \ - && chmod -R mysql:mysql /docker-entrypoint-* + && chown -R mysql:mysql /docker-entrypoint-* # set entrypoint and default command ENTRYPOINT [ "/usr/local/bin/entrypoint.sh" ]