summaryrefslogtreecommitdiffstats
path: root/alpine/java11/src/main/docker/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'alpine/java11/src/main/docker/Dockerfile')
-rw-r--r--alpine/java11/src/main/docker/Dockerfile19
1 files changed, 0 insertions, 19 deletions
diff --git a/alpine/java11/src/main/docker/Dockerfile b/alpine/java11/src/main/docker/Dockerfile
deleted file mode 100644
index 192d618b..00000000
--- a/alpine/java11/src/main/docker/Dockerfile
+++ /dev/null
@@ -1,19 +0,0 @@
-# Base alpine with added packages needed for open ecomp
-FROM ${base.image}:${base.image.version}
-MAINTAINER CCSDK Team (onap-ccsdk@lists.onap.org)
-USER root
-
-ARG HTTP_PROXY
-ARG HTTPS_PROXY
-
-ENV HTTP_PROXY ${HTTP_PROXY}
-ENV http_proxy ${HTTP_PROXY}
-ENV HTTPS_PROXY ${HTTPS_PROXY}
-ENV https_proxy ${HTTPS_PROXY}
-
-ENV JAVA_HOME /opt/java/openjdk
-
-# Add tools needed for OpenDaylight
-RUN apk update && apk --no-cache add sudo bash iputils openssl git mysql-client nodejs npm python3 py3-pip graphviz unzip rsync nss
-
-USER onap