From e2af0d45e21d95f0e5fe827805473a5d8b72866c Mon Sep 17 00:00:00 2001 From: Hai Liang Wang Date: Sun, 24 Nov 2019 13:54:17 +0800 Subject: [PATCH] Fix db setup command path --- contact-center/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/contact-center/Dockerfile b/contact-center/Dockerfile index 8a44eb84..d30d78a6 100644 --- a/contact-center/Dockerfile +++ b/contact-center/Dockerfile @@ -39,6 +39,7 @@ RUN /bin/bash -c "mkdir -p /{data,logs}" # build WAR RUN mkdir -p /opt/chatopera COPY ./app/target/contact-center-*.war /opt/chatopera/contact-center.war +COPY ./assets/mysql.setup.db.sh /opt/chatopera COPY ./assets/mysql.upgrade.db.sh /opt/chatopera RUN chmod +x /opt/chatopera/*.sh