Instrumental | 7a1817b | 2018-11-05 11:11:15 -0600 | [diff] [blame] | 1 | ######### |
| 2 | # ============LICENSE_START==================================================== |
| 3 | # org.onap.aaf |
| 4 | # =========================================================================== |
| 5 | # Copyright (c) 2017 AT&T Intellectual Property. All rights reserved. |
| 6 | # =========================================================================== |
| 7 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 8 | # you may not use this file except in compliance with the License. |
| 9 | # You may obtain a copy of the License at |
| 10 | # |
| 11 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 12 | # |
| 13 | # Unless required by applicable law or agreed to in writing, software |
| 14 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 15 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 16 | # See the License for the specific language governing permissions and |
| 17 | # limitations under the License. |
| 18 | # ============LICENSE_END==================================================== |
| 19 | # |
Instrumental | bc299c0 | 2018-09-25 06:42:31 -0500 | [diff] [blame] | 20 | FROM nexus3.onap.org:10001/cassandra:3.11 |
| 21 | MAINTAINER AAF Team, AT&T 2018 |
| 22 | ENV VERSION=${AAF_VERSION} |
| 23 | |
| 24 | LABEL description="aaf_cass" |
| 25 | LABEL version=${AAF_VERSION} |
| 26 | |
| 27 | COPY cass_init/*.cql /opt/app/aaf/cass_init/ |
| 28 | COPY cass_init/*.sh /opt/app/aaf/cass_init/ |
Instrumental | f95fc5f | 2018-11-21 16:06:17 -0600 | [diff] [blame] | 29 | COPY cass_init/*.props /opt/app/aaf/cass_init/ |
| 30 | COPY aaf-auth-batch-${AAF_VERSION}-full.jar /opt/app/aaf/cass_init/ |
Instrumental | 9405361 | 2018-10-08 11:27:18 -0500 | [diff] [blame] | 31 | COPY cass_data/*.dat /opt/app/aaf/cass_init/dats/ |
Instrumental | bc299c0 | 2018-09-25 06:42:31 -0500 | [diff] [blame] | 32 | |
Instrumental | 27afb02 | 2019-02-07 16:36:56 -0600 | [diff] [blame] | 33 | RUN mkdir -p /opt/app/aaf/status && chmod 777 /opt/app/aaf/status |
| 34 | #RUN addgroup ${USER} && adduser --no-create-home --ingroup ${USER} --disabled-password --gecos "" --shell /bin/bash ${USER} |
| 35 | #RUN chown -R ${USER}:${USER} /opt/app/aaf/cass_init |
| 36 | |
| 37 | |
Instrumental | bc299c0 | 2018-09-25 06:42:31 -0500 | [diff] [blame] | 38 | ENTRYPOINT ["/bin/bash","/opt/app/aaf/cass_init/cmd.sh"] |
| 39 | CMD ["start"] |
Instrumental | 08e9340 | 2018-10-03 08:38:52 -0500 | [diff] [blame] | 40 | # Default is to start up with CQL setup only |
Instrumental | bc299c0 | 2018-09-25 06:42:31 -0500 | [diff] [blame] | 41 | |