Compare commits

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

6 commits

Author SHA1 Message Date
Jakub Čajka
2bec03e77a Fix up the BZ component 2018-09-21 09:46:48 +02:00
Jakub Čajka
004ec2ad5c No utf-8 encoding in the OSBS 2018-09-19 13:57:23 +02:00
Jakub Čajka
135329cf6d Add back README 2018-09-12 10:54:00 +02:00
Jakub Čajka
892f78da8a Fix multi line line 2018-09-11 15:46:35 +02:00
Jakub Čajka
40e47c515d Don't include README 2018-09-11 15:43:20 +02:00
Jakub Čajka
8714a429b6 Initial 3.9/f28 commit 2018-09-11 15:33:49 +02:00
2 changed files with 35 additions and 1 deletions

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:28
ENV NAME=origin-base \
VERSION=3.9 \
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} && \
dnf clean all && \
mkdir -p /var/lib/origin
LABEL io.k8s.display-name="OpenShift Origin Fedora 28 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="origin-base" \
version="$VERSION" \
architecture="$ARCH" \
usage="This is the base image from which all OpenShift Origin images inherit."
COPY README.md README.md

View file

@ -1,3 +1,3 @@
# origin-base
The origin-base package
Base origin image on top which most of the other dependent origin images are based on.