[DCAE] INFO.yaml update
[dcaegen2/platform.git] / adapter / acumos / Dockerfile
1 # ============LICENSE_START====================================================
2 # org.onap.dcae
3 # =============================================================================
4 # Copyright (c) 2019 AT&T Intellectual Property. All rights reserved.
5 # Copyright (c) 2021 highstreet technologies GmbH. 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 FROM python:3.7
21 ARG UID=1000
22 ARG GID=1000
23 COPY setup.py /tmp/build/
24 COPY aoconversion/ /tmp/build/aoconversion/
25 RUN apt-get update && \
26     apt-get install -y npm nodejs && \
27     npm -v && \
28     npm install -g protobuf-jsonschema && \
29     mkdir schemas && \
30     wget -O schemas/schema.json 'https://json-schema.org/draft-04/schema#' && \
31     wget -O schemas/compspec.json https://git.onap.org/dcaegen2/platform/plain/mod/component-json-schemas/component-specification/dcae-cli-v3/component-spec-schema.json && \
32     wget -O schemas/dataformat.json https://git.onap.org/dcaegen2/platform/plain/mod/component-json-schemas/data-format/dcae-cli-v1/data-format-schema.json && \
33     cd /tmp/build/ && \
34     python setup.py install && \
35     cd / && \
36     rm -rf /tmp/* && \
37     groupadd -g $GID dcaemod && \
38     useradd -s /bin/bash -u $UID -g $GID -m dcaemod
39
40 EXPOSE 9000
41 ENV PYTHONUNBUFFERED TRUE
42 USER dcaemod
43 ENTRYPOINT [ "/usr/local/bin/acumos-adapter" ]
44 CMD [ "/run/config/config.yaml" ]