Skip to content

Commit

Permalink
add Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
dviejokfs committed Jan 16, 2022
1 parent 418c235 commit 85f7fca
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -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 <dviejo@kungfusoftware.es>" \
maintainer="Kung Fu Software <dviejo@kungfusoftware.es>" \
version="v1.1.0" \
release="v1.1.0"

COPY charts /charts

COPY hlf-operator /hlf-operator

CMD ["/hlf-operator"]

0 comments on commit 85f7fca

Please sign in to comment.