Compare commits

...
Sign in to create a new pull request.

1 commit

Author SHA1 Message Date
Jakub Čajka
82a4391ef9 Initial commit 2019-01-21 16:04:04 +01:00

24
Dockerfile Normal file
View file

@ -0,0 +1,24 @@
FROM registry.fedoraproject.org/fedora:29
ENV NAME=origin-template-service-broker \
VERSION=3.11 \
ARCH=x86_64
RUN INSTALL_PKGS="origin-template-service-broker" && \
dnf install -y ${INSTALL_PKGS} && \
rpm -V ${INSTALL_PKGS} && \
dnf clean all
LABEL io.k8s.display-name="OpenShift Origin template service broke" \
io.k8s.description="This is the OpenShift Origin template service broke image." \
io.openshift.tags="openshift,base" \
summary="This is the OpenShift Origin template service broke image." \
maintainer="Jakub Cajka <jcajka@fedoraproject.org>" \
License="GPLv2+" \
name="$FGC/$NAME" \
com.redhat.component="$NAME" \
version="$VERSION" \
architecture="$ARCH" \
usage="This is the OpenShift Origin template service broke image."
CMD [ "/usr/bin/template-service-broker" ]