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>
12 lines
417 B
Docker
12 lines
417 B
Docker
FROM registry.fedoraproject.org/fedora:rawhide
|
|
MAINTAINER "Jason Brooks" <jbrooks@redhat.com>
|
|
|
|
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
|