Refactor Distributed Analytics project structure
[demo.git] / vnfs / DAaaS / collectd-operator / build / Dockerfile
diff --git a/vnfs/DAaaS/collectd-operator/build/Dockerfile b/vnfs/DAaaS/collectd-operator/build/Dockerfile
deleted file mode 100644 (file)
index c923e15..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-FROM registry.access.redhat.com/ubi7/ubi-minimal:latest
-
-ENV OPERATOR=/usr/local/bin/collectd-operator \
-    USER_UID=1001 \
-    USER_NAME=collectd-operator
-
-# install operator binary
-COPY build/_output/bin/collectd-operator ${OPERATOR}
-
-COPY build/bin /usr/local/bin
-RUN  /usr/local/bin/user_setup
-
-ENTRYPOINT ["/usr/local/bin/entrypoint"]
-
-USER ${USER_UID}