shrek2000 | 0594c41 | 2020-01-30 14:52:49 +0200 | [diff] [blame] | 1 | FROM onap/base_sdc-cqlsh:1.5.0-SNAPSHOT-latest |
Avi Ziv | c175a0d | 2018-03-15 13:21:44 +0200 | [diff] [blame] | 2 | |
3 | COPY init_keyspaces.cql /root/ | ||||
4 | |||||
5 | COPY init_schemas.cql /root/ | ||||
6 | |||||
Ben David, Elad (eb7504) | ee64a64 | 2019-11-03 16:19:16 +0200 | [diff] [blame] | 7 | COPY alter_tables.cql /root/ |
8 | |||||
Avi Ziv | c175a0d | 2018-03-15 13:21:44 +0200 | [diff] [blame] | 9 | COPY startup.sh /root/ |
10 | |||||
11 | RUN chmod 770 /root/startup.sh | ||||
12 | |||||
13 | ENTRYPOINT [ "/root/startup.sh" ] | ||||
14 |