summaryrefslogtreecommitdiffstats
path: root/ms/command-executor/src/main/docker/Dockerfile
blob: cac2b958b68253c8acb0916d53c21ca68a5516be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
FROM python:3.6-slim

ENV GRPC_PYTHON_VERSION 1.19.0
RUN python -m pip install --upgrade pip
RUN pip install grpcio==${GRPC_PYTHON_VERSION} grpcio-tools==${GRPC_PYTHON_VERSION}
RUN pip install virtualenv

RUN mkdir -p /opt/onap/blueprints && mkdir -p /opt/onap/app/python && chmod -R 777 /opt/onap

COPY start.sh /opt/onap/app/start.sh
RUN chmod u+x /opt/onap/app/start.sh

COPY @project.build.finalName@-@assembly.id@.tar.gz /source.tar.gz
RUN tar -xzf /source.tar.gz -C /tmp \
 && cp -rf /tmp/@project.build.finalName@/opt / \
 && rm -rf /source.tar.gz \
 && rm -rf /tmp/@project.build.finalName@

ENTRYPOINT /opt/onap/app/start.sh
span class="err">AT&T Intellectual Property. All rights reserved. # ================================================================================ # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # # SPDX-License-Identifier: Apache-2.0 # ============LICENSE_END========================================================= { "name": "XacmlPdpParameters", "pdpGroup": "defaultGroup", "restServerParameters": { "host": "0.0.0.0", "port": 6969, "userName": "healthcheck", "password": "zb!XztG34", "https": true, "aaf": false }, "policyApiParameters": { "host": "policy-api", "port": 6969, "userName": "healthcheck", "password": "zb!XztG34", "https": true, "aaf": false }, "applicationPath": "/opt/app/policy/pdpx/apps", "topicParameterGroup": { "topicSources" : [{ "topic" : "POLICY-PDP-PAP", "servers" : [ "message-router" ], "useHttps" : true, "topicCommInfrastructure" : "dmaap" }], "topicSinks" : [{ "topic" : "POLICY-PDP-PAP", "servers" : [ "message-router" ], "useHttps" : true, "topicCommInfrastructure" : "dmaap" }] } }