From 3c494af52c476a86ae1389991b464914517774b8 Mon Sep 17 00:00:00 2001 From: Bartosz Gardziejewski Date: Wed, 8 Apr 2020 09:31:13 +0200 Subject: Move PNF simulator from /test/mocks to new project This code is a copy of pnfsimulator located in integration repository (/test/mocks/pnfsimulator) with added profile "docker" in pom.xml located in pnfsimulator and netconfsimulator subprojects Issue-ID: INT-1517 Signed-off-by: Bartosz Gardziejewski Change-Id: I725fa0530c41b13cb12705979dee8b8b354dc1a1 --- pnfsimulator/Dockerfile | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 pnfsimulator/Dockerfile (limited to 'pnfsimulator/Dockerfile') diff --git a/pnfsimulator/Dockerfile b/pnfsimulator/Dockerfile new file mode 100644 index 0000000..aafea0e --- /dev/null +++ b/pnfsimulator/Dockerfile @@ -0,0 +1,8 @@ +FROM openjdk:8-jre-alpine +ADD target/libs /app/libs +ADD target/pnfsimulator-5.0.0-SNAPSHOT.jar /app/pnf-simulator.jar +CMD apk update +CMD apk add ca-certificates +ADD certificates /usr/local/share/ca-certificates/ +RUN update-ca-certificates +CMD java -Dspring.config.location=file:/app/application.properties -cp /app/libs/*:/app/pnf-simulator.jar org.onap.pnfsimulator.Main -- cgit 1.2.3-korg