Seed policysync container code
[dcaegen2/deployments.git] / dcae-services-policy-sync / Dockerfile
1 # ============LICENSE_START=======================================================
2 # Copyright (c) 2021 AT&T Intellectual Property. All rights reserved.
3 # ================================================================================
4 # Licensed under the Apache License, Version 2.0 (the "License");
5 # you may not use this file except in compliance with the License.
6 # You may obtain a copy of the License at
7 #
8 #      http://www.apache.org/licenses/LICENSE-2.0
9 #
10 # Unless required by applicable law or agreed to in writing, software
11 # distributed under the License is distributed on an "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License.
15 # ============LICENSE_END=========================================================
16
17 FROM nexus3.onap.org:10001/onap/integration-python:7.0.1 as build
18
19
20 USER root
21
22 RUN python3 -m venv /policysync
23 # Need GCC, musl and associated dependencies to compile dependencies against musl
24 RUN apk add --no-cache --virtual .build-deps gcc musl-dev
25
26 WORKDIR /app
27
28
29 # Install dependencies first to speed up builds 
30 ADD setup.py setup.py
31 RUN /policysync/bin/pip install -e .
32
33 # Add the code now
34 ADD policysync policysync 
35 RUN /policysync/bin/pip install .
36
37 FROM nexus3.onap.org:10001/onap/integration-python:7.0.1 as runtime
38
39 COPY --from=build /policysync /policysync
40
41 USER onap
42 ENTRYPOINT [ "/policysync/bin/policysync" ]
43
44
45
46