Compare commits
1 commit
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
7195376bbb |
1 changed files with 28 additions and 0 deletions
28
Dockerfile
Normal file
28
Dockerfile
Normal file
|
|
@ -0,0 +1,28 @@
|
||||||
|
#
|
||||||
|
# This is the official OpenShift CLI image. It can be used to get a CLI environment
|
||||||
|
# for OpenShift.
|
||||||
|
#
|
||||||
|
# The standard name for this image is openshift/origin-hyperkube
|
||||||
|
#
|
||||||
|
FROM registry.fedoraproject.org/f29/origin-base:latest
|
||||||
|
|
||||||
|
ENV NAME=origin-hyperkube \
|
||||||
|
VERSION=3.11 \
|
||||||
|
ARCH=x86_64
|
||||||
|
|
||||||
|
RUN INSTALL_PKGS="origin-hyperkube" && \
|
||||||
|
dnf install -y ${INSTALL_PKGS} && \
|
||||||
|
rpm -V ${INSTALL_PKGS} && \
|
||||||
|
dnf clean all
|
||||||
|
|
||||||
|
LABEL io.k8s.display-name="OpenShift Kubernetes Server Commands" \
|
||||||
|
io.k8s.description="OpenShift is a platform for developing, building, and deploying containerized applications." \
|
||||||
|
io.openshift.tags="openshift,hyperkube" \
|
||||||
|
summary="OpenShift is a platform for developing, building, and deploying containerized applications." \
|
||||||
|
maintainer="Jakub Cajka <jcajka@fedoraproject.org>" \
|
||||||
|
License="GPLv2+" \
|
||||||
|
name="$FGC/$NAME" \
|
||||||
|
com.redhat.component="$NAME" \
|
||||||
|
version="$VERSION" \
|
||||||
|
architecture="$ARCH" \
|
||||||
|
usage="OpenShift is a platform for developing, building, and deploying containerized applications."
|
||||||
Loading…
Add table
Add a link
Reference in a new issue