aboutsummaryrefslogtreecommitdiffstats
path: root/Dockerfile-local
diff options
context:
space:
mode:
authorTomasz Wr�bel <tomasz.wrobel@nokia.com>2021-03-24 13:39:05 +0000
committerGerrit Code Review <gerrit@onap.org>2021-03-24 13:39:05 +0000
commit1a35d78e80e4c7903d4c84c4d159f9edbb3fb745 (patch)
tree9fa1c87107c7874edb602f8ccf1dd29a75454be2 /Dockerfile-local
parenta7766352f6802a714f326e4503e3ec7f87f774eb (diff)
parent5bead9db964d37647169df71279e57d3dbc20509 (diff)
Merge "Move local dev files and add Changelog"
Diffstat (limited to 'Dockerfile-local')
-rw-r--r--Dockerfile-local21
1 files changed, 0 insertions, 21 deletions
diff --git a/Dockerfile-local b/Dockerfile-local
deleted file mode 100644
index b1b378a..0000000
--- a/Dockerfile-local
+++ /dev/null
@@ -1,21 +0,0 @@
-FROM nexus3.onap.org:10001/onap/integration-java11:8.0.0
-
-ARG VERSION=${version}
-ENV HELM_SUPPORTED_VERSIONS=${HELM_SUPPORTED_VERSIONS}
-
-USER root
-RUN adduser -G onap -D validator
-
-RUN apk add --no-cache bash vim curl wget
-
-#Installing Helm
-COPY scripts/helm_versions/* /usr/local/bin/
-
-RUN mkdir /charts
-RUN chown -R validator:onap /charts
-
-USER validator:onap
-
-COPY target/sdc-helm-validator-${VERSION}.jar ./opt/helmvalidator/helmvalidator.jar
-
-ENTRYPOINT ["java","-XX:+UseParallelGC","-XX:MinRAMPercentage=50","-XX:MaxRAMPercentage=50","-XX:MinHeapFreeRatio=10","-XX:MaxHeapFreeRatio=20","-jar","./opt/helmvalidator/helmvalidator.jar"]