aboutsummaryrefslogtreecommitdiffstats
path: root/Dockerfile-local
diff options
context:
space:
mode:
authorPiotr Marcinkiewicz <piotr.marcinkiewicz@nokia.com>2021-03-23 11:51:20 +0100
committerPiotr Marcinkiewicz <piotr.marcinkiewicz@nokia.com>2021-03-23 12:57:48 +0100
commit5bead9db964d37647169df71279e57d3dbc20509 (patch)
tree6d3a084d1d31bf6f8fd18106a7d94fb1f893a6e8 /Dockerfile-local
parent25763727265dd20b0301db0164c3e5549700cab4 (diff)
Move local dev files and add Changelog
Issue-ID: SDC-3185 Signed-off-by: Piotr Marcinkiewicz <piotr.marcinkiewicz@nokia.com> Change-Id: Ic5d8b89dc0e69721c47b5fdec459bbd70e48f746
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"]