From ec2df12bdb0566df34595f689ccb3b186e75336b Mon Sep 17 00:00:00 2001 From: Luke Murphy Date: Sun, 22 Mar 2020 17:24:02 +0100 Subject: [PATCH] Install mysql client too --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index 389f24c..7089d7c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,4 +6,6 @@ COPY . ${WORKDIR} COPY sbin/* /sbin/ +RUN apt install -qq -y default-mysql-client + ENTRYPOINT ["/sbin/entrypoint.sh"]