Created
February 8, 2018 10:13
-
-
Save strigazi/912074206ae61b9ed577015c41ca5059 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM registry.fedoraproject.org/fedora:rawhide | |
ENV NAME=kubernetes-master VERSION=0 RELEASE=0 ARCH=x86_64 | |
LABEL bzcomponent="$NAME" \ | |
name="$FGC/$NAME" \ | |
version="$VERSION" \ | |
release="$RELEASE.$DISTTAG" \ | |
architecture="$ARCH" \ | |
maintainer="Jason Brooks <[email protected]>" | |
RUN dnf -y --setopt=tsflags=nodocs 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 | |
COPY <kubernetes apiserver binary> /usr/bin/kube-apiserver | |
# same for scheduler and controller manager |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment