blob: 76e1d2b15421802e0341e714c9823d5c8313e3ff [file] [log] [blame]
Tal Gitelmanae3a86d2018-10-30 19:45:19 +02001FROM onap/base_sdc-cqlsh:1.4.1
Avi Zivc175a0d2018-03-15 13:21:44 +02002
3COPY init_keyspaces.cql /root/
4
5COPY init_schemas.cql /root/
6
Ben David, Elad (eb7504)ee64a642019-11-03 16:19:16 +02007COPY alter_tables.cql /root/
8
Avi Zivc175a0d2018-03-15 13:21:44 +02009COPY startup.sh /root/
10
11RUN chmod 770 /root/startup.sh
12
13ENTRYPOINT [ "/root/startup.sh" ]
14