Compare commits

...
Sign in to create a new pull request.

3 commits

Author SHA1 Message Date
Clement Verna
211d3a56d1 Koji does not support non UTF-8 Char
Signed-off-by: Clement Verna <cverna@tutanota.com>
2018-09-11 18:52:46 +02:00
Jakub Čajka
2fe8ffd932 Skip RPM verifie for now 2018-09-11 12:50:33 +02:00
Jakub Čajka
ec2f2f164b Initial f27/3.6 commit 2018-09-11 12:24:32 +02:00

34
Dockerfile Normal file
View file

@ -0,0 +1,34 @@
#
# This is the base image from which all OpenShift Origin images inherit. Only packages
# common to all downstream images should be here.
#
# The standard name for this image is openshift/origin-base
#
FROM registry.fedoraproject.org/fedora:27
ENV NAME=origin-base \
VERSION=3.6 \
ARCH=x86_64
RUN INSTALL_PKGS=" \
which git tar wget hostname util-linux bsdtar \
socat ethtool device-mapper iptables tree findutils nmap-ncat e2fsprogs \
xfsprogs lsof device-mapper-persistent-data ceph-common \
" && \
dnf install -y ${INSTALL_PKGS} && \
# rpm -V ${INSTALL_PKGS} && \
dnf clean all && \
mkdir -p /var/lib/origin
LABEL io.k8s.display-name="OpenShift Origin Fedora 27 Base" \
io.k8s.description="This is the base image from which all OpenShift Origin images inherit." \
io.openshift.tags="openshift,base" \
summary="This is the base image from which all OpenShift Origin images inherit." \
maintainer="Jakub Cajka <jcajka@fedoraproject.org>" \
License="GPLv2+" \
name="$FGC/$NAME" \
com.redhat.component="$NAME" \
version="$VERSION" \
architecture="$ARCH" \
usage="This is the base image from which all OpenShift Origin images inherit."