Compare commits

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

6 commits

Author SHA1 Message Date
Mohan Boddu
8f5f80415a "Bump RELEASE for automatic rebuild" 2018-03-15 14:40:58 +00:00
Adam Miller
7fe5331615 Bump RELEASE for automatic rebuild 2017-11-14 14:18:04 -06:00
Adam Miller
f7293b948f Bump RELEASE for automatic rebuild 2017-09-21 14:02:40 -05:00
Adam Miller
5b28b7afa9 Bump RELEASE for automatic rebuild 2017-08-24 16:55:51 -05:00
Adam Miller
a6b6be2cc5 Bump RELEASE for automatic rebuild 2017-07-25 16:18:21 -05:00
Jason Brooks
034e3d1711 import from rawhide 2017-07-07 09:33:03 -07:00

13
Dockerfile Normal file
View file

@ -0,0 +1,13 @@
FROM registry.fedoraproject.org/fedora:26
MAINTAINER "Jason Brooks" <jbrooks@redhat.com>
ENV NAME=kubernetes-master VERSION=0 RELEASE=5 ARCH=x86_64
LABEL BZComponent="$NAME" \
name="$FGC/$NAME" \
version="$VERSION" \
release="$RELEASE.$DISTTAG" \
architecture="$ARCH"
RUN dnf -y update && dnf clean all
RUN groupadd -g 994 kube && useradd -u 996 -g 994 kube
RUN dnf install -y kubernetes-master findutils && dnf clean all