blob: 29189dbb4c8b529f62597495a0e8dd722d6411d5 [file] [log] [blame]
shrek20000594c412020-01-30 14:52:49 +02001FROM onap/base_sdc-cqlsh:1.5.0-SNAPSHOT-latest
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