Instrumental | bc299c0 | 2018-09-25 06:42:31 -0500 | [diff] [blame] | 1 | FROM nexus3.onap.org:10001/cassandra:3.11 |
| 2 | MAINTAINER AAF Team, AT&T 2018 |
| 3 | ENV VERSION=${AAF_VERSION} |
| 4 | |
| 5 | LABEL description="aaf_cass" |
| 6 | LABEL version=${AAF_VERSION} |
| 7 | |
| 8 | COPY cass_init/*.cql /opt/app/aaf/cass_init/ |
| 9 | COPY cass_init/*.sh /opt/app/aaf/cass_init/ |
Instrumental | 9405361 | 2018-10-08 11:27:18 -0500 | [diff] [blame] | 10 | COPY cass_data/*.dat /opt/app/aaf/cass_init/dats/ |
Instrumental | bc299c0 | 2018-09-25 06:42:31 -0500 | [diff] [blame] | 11 | |
| 12 | ENTRYPOINT ["/bin/bash","/opt/app/aaf/cass_init/cmd.sh"] |
| 13 | CMD ["start"] |
Instrumental | 08e9340 | 2018-10-03 08:38:52 -0500 | [diff] [blame] | 14 | # Default is to start up with CQL setup only |
Instrumental | bc299c0 | 2018-09-25 06:42:31 -0500 | [diff] [blame] | 15 | |