Drop DMaaP BC web GUI from Portal deployment
[portal.git] / deliveries / Dockerfile.mariadb
1 FROM mariadb:latest
2
3 ARG PORTAL_SCRIPT_DIR=${PORTAL_SCRIPT_DIR}
4 ARG SDK_SCRIPT_DIR=${SDK_SCRIPT_DIR}
5
6 # constant
7 #Add config file
8 COPY my.cnf /etc/mysql/my.cnf
9 #ADD cluster.cnf /etc/mysql/conf.d
10
11 # Scripts are executed in alphabetical order
12
13 # Portal DDL and DML at 1710
14 COPY ${PORTAL_SCRIPT_DIR}/EcompPortalDDLMySql_1710_Common.sql /docker-entrypoint-initdb.d/
15 COPY ${PORTAL_SCRIPT_DIR}/EcompPortalDDLMySql_1710_OS.sql     /docker-entrypoint-initdb.d/
16 COPY ${PORTAL_SCRIPT_DIR}/EcompPortalDMLMySql_1710_Common.sql /docker-entrypoint-initdb.d/
17 COPY ${PORTAL_SCRIPT_DIR}/EcompPortalDMLMySql_1710_OS.sql     /docker-entrypoint-initdb.d/
18 COPY Apps_Users_OnBoarding_Script.sql                         /docker-entrypoint-initdb.d/EcompPortalDMLMySql_1710_z_apps_users.sql
19
20 # SDK App DDL and DML unchanged since 1707
21 COPY ${SDK_SCRIPT_DIR}/EcompSdkDDLMySql_1710_Common.sql       /docker-entrypoint-initdb.d/
22 COPY ${SDK_SCRIPT_DIR}/EcompSdkDDLMySql_1710_OS.sql           /docker-entrypoint-initdb.d/
23 COPY ${SDK_SCRIPT_DIR}/EcompSdkDMLMySql_1710_Common.sql       /docker-entrypoint-initdb.d/
24 COPY ${SDK_SCRIPT_DIR}/EcompSdkDMLMySql_1710_OS.sql           /docker-entrypoint-initdb.d/