changed to unmaintained
[aaf/authz.git] / auth / auth-cass / docker / Dockerfile.cass
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 #
20 # Use dbuild.sh input parameter to set registry
21 FROM ${REGISTRY}/cassandra:3.11
22 MAINTAINER AAF Team, AT&T 2018
23 ENV VERSION=${AAF_VERSION}
24
25 LABEL description="aaf_cass"
26 LABEL version=${AAF_VERSION}
27
28 COPY cass_init/*.cql /opt/app/aaf/cass_init/
29 COPY cass_init/*.sh /opt/app/aaf/cass_init/
30 COPY cass_init/*.props /opt/app/aaf/cass_init/
31 COPY aaf-auth-batch-*-full.jar /opt/app/aaf/cass_init/
32 COPY cass_data/*.dat /opt/app/aaf/cass_init/dats/
33 COPY sample.identities.dat /opt/app/aaf/cass_init/data/identities.dat
34
35 RUN mkdir -p /opt/app/aaf/status &&\
36     chmod 777 /opt/app/aaf/status && \
37     if [ ! -z "${DUSER}" ]; then \
38       addgroup --gid 1000 ${DUSER}; \
39       adduser --ingroup ${DUSER} --disabled-password --gecos "" --shell /bin/bash -u 1000 ${DUSER} ; \
40       mkdir -p /var/lib/cassandra/data /var/log/cassandra ; \
41       chown -R 1000:1000 /opt/app/aaf /etc/cassandra /var/log/cassandra /var/lib/cassandra ; \
42       fi && \
43     ln -s /opt/app/aaf/cass_init/cmd.sh /aaf_cmd && chmod a+x /aaf_cmd
44
45 USER ${DUSER}
46 ENTRYPOINT ["/bin/bash","/opt/app/aaf/cass_init/cmd.sh"]
47 CMD ["start"]
48 # Default is to start up with CQL setup only
49