Compare commits

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

4 commits

Author SHA1 Message Date
Bhavin Gandhi
5046a8cc5f Drop Release label in favor of OSBS release_bump plugin
OSBS can automatically bump the release number, for that
we just need to drop the label from the Dockerfile

See https://pagure.io/ContainerSIG/container-sig/issue/1

Signed-off-by: Bhavin Gandhi <bhavin7392@gmail.com>
2018-08-26 23:33:47 +05:30
Jason Brooks
6705d4ec86 set rebuild for 1.7.1 2017-07-20 12:02:46 -07:00
Jason Brooks
f72d9a30db fix BZComponent capitalization 2017-07-06 13:03:28 -07:00
Jason Brooks
7fcf310c66 initial commit 2017-07-06 12:21:15 -07:00

11
Dockerfile Normal file
View file

@ -0,0 +1,11 @@
FROM registry.fedoraproject.org/fedora:rawhide
MAINTAINER "Jason Brooks" <jbrooks@redhat.com>
ENV NAME=kubernetes-node VERSION=1.7.1 ARCH=x86_64
LABEL BZComponent="$NAME" \
name="$FGC/$NAME" \
version="$VERSION" \
architecture="$ARCH"
RUN dnf -y update && dnf clean all
RUN dnf install -y kubernetes-node findutils && dnf clean all