From 85f7fca2b3798244b36d633e0210a0a5f3efc64b Mon Sep 17 00:00:00 2001 From: David VIEJO Date: Sun, 16 Jan 2022 19:08:27 +0100 Subject: [PATCH] add Dockerfile --- Dockerfile | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..497e119 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,20 @@ +FROM registry.access.redhat.com/ubi8/ubi-minimal:8.3 + + +RUN \ + microdnf update --nodocs && \ + microdnf install curl ca-certificates shadow-utils --nodocs + +COPY CREDITS /licenses/CREDITS +COPY LICENSE /licenses/LICENSE +LABEL name="HLF Operator" \ + vendor="Kung Fu Software " \ + maintainer="Kung Fu Software " \ + version="v1.1.0" \ + release="v1.1.0" + +COPY charts /charts + +COPY hlf-operator /hlf-operator + +CMD ["/hlf-operator"] \ No newline at end of file