11 lines
353 B
Docker
11 lines
353 B
Docker
FROM registry.fedoraproject.org/fedora:29
|
|
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
|