blob: 76e1d2b15421802e0341e714c9823d5c8313e3ff (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
FROM onap/base_sdc-cqlsh:1.4.1
COPY init_keyspaces.cql /root/
COPY init_schemas.cql /root/
COPY alter_tables.cql /root/
COPY startup.sh /root/
RUN chmod 770 /root/startup.sh
ENTRYPOINT [ "/root/startup.sh" ]
|