blob: 053dd434da237d6fcdafcd8284f929d40f915ddd [file] [log] [blame]
Eran (ev672n), Vosk98402fb2018-08-06 15:26:20 +03001FROM onap/base_sdc-sanity:1.3.1
2
3RUN apk add --no-cache \
4 shadow \
5 && :
6
7RUN mkdir ExtentReport logs
8
9COPY chef-solo chef-solo
10COPY target/dcae-ci-tests-*-jar-with-dependencies.jar dcae-ci-tests-jar-with-dependencies.jar
11COPY target/classes/testSuite/testSuite.xml /testSuite/testSuite.xml
12COPY target/classes/conf conf
13COPY startup.sh startup.sh
14
15RUN set -x ; \
16 groupadd -g 35953 -f dcae ; \
17 useradd -u 352070 -g dcae -Gdcae -m -d /home/dcae dcae && exit 0 ; exit 1
18
19RUN chmod 775 startup.sh /testSuite/testSuite.xml /chef-solo /conf /ExtentReport /logs ; \
20 chown dcae:dcae startup.sh /testSuite/testSuite.xml /chef-solo /conf /ExtentReport /logs
21
22USER dcae
23
24ENTRYPOINT ["./startup.sh"]