diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..47bfd0a --- /dev/null +++ b/Dockerfile @@ -0,0 +1,12 @@ +FROM registry.fedoraproject.org/fedora:rawhide +MAINTAINER "Jason Brooks" + +ENV NAME=kubernetes-master 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 groupadd -g 994 kube && useradd -u 996 -g 994 kube +RUN dnf install -y kubernetes-master findutils && dnf clean all