Compare commits

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

12 commits

Author SHA1 Message Date
Clement Verna
d9d750294a Drop Release label in favor of OSBS release_bump plugin.
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: Clement Verna <cverna@tutanota.com>
2018-08-22 22:56:35 +02:00
Mohan Boddu
9ce8686818 "Bump RELEASE for automatic rebuild" 2018-07-24 18:51:47 +00:00
Mohan Boddu
daf4460869 "Bump RELEASE for automatic rebuild" 2018-07-23 13:10:12 +00:00
Mohan Boddu
c8654d3eb5 "Bump RELEASE for automatic rebuild" 2018-07-09 13:32:10 +00:00
Mohan Boddu
7d20121dec "Bump RELEASE for automatic rebuild" 2018-05-30 19:20:52 +00:00
Clement Verna
b5a250d3d9 Container name should have the FGC(fxx) variable defined
Signed-off-by: Clement Verna <cverna@tutanota.com>
2018-05-25 10:44:56 +02:00
Clement Verna
87c5122b08 Bump Release so we can rebuild the image in OSBS
Signed-off-by: Clement Verna <cverna@tutanota.com>
2018-05-25 10:25:05 +02:00
Mohan Boddu
295249b873 "Bump RELEASE for automatic rebuild" 2018-05-21 17:56:37 +00:00
Mohan Boddu
e242a437dd "Bump RELEASE for automatic rebuild" 2018-05-21 14:19:53 +00:00
Giuseppe Scrivano
91634cd69a
Dockerfile: update
Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com>
2018-05-16 16:11:04 +02:00
Giuseppe Scrivano
4fa43434dd
Dockerfile: bump release
Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com>
2018-05-16 10:28:09 +02:00
Giuseppe Scrivano
a4c34c4f2d
Dockerfile: update FROM
Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com>
2018-05-16 10:25:33 +02:00

View file

@ -1,18 +1,17 @@
FROM registry.fedoraproject.org/fedora:rawhide
FROM registry.fedoraproject.org/fedora:28
ENV VERSION=0 RELEASE=1 ARCH=x86_64
ENV VERSION=0 ARCH=x86_64
LABEL com.redhat.component="docker" \
name="docker" \
name="$FGC/docker" \
version="$VERSION" \
release="$RELEASE.$DISTTAG" \
architecture="$ARCH" \
usage="atomic install --system --system-package=no docker && systemctl start docker" \
summary="The docker daemon as a system container." \
maintainer="Giuseppe Scrivano <gscrivan@redhat.com>" \
atomic.type="system"
RUN dnf install --setopt=tsflags=nodocs -y docker container-storage-setup container-selinux cloud-utils-growpart python-docker-py docker-novolume-plugin lvm2 iptables procps-ng xz oci-register-machine \
&& rpm -V docker container-storage-setup container-selinux cloud-utils-growpart python-docker-py docker-novolume-plugin lvm2 iptables procps-ng xz oci-register-machine \
RUN dnf install --setopt=tsflags=nodocs -y docker container-storage-setup container-selinux cloud-utils-growpart docker-novolume-plugin lvm2 iptables procps-ng xz oci-register-machine \
&& rpm -V docker container-storage-setup container-selinux cloud-utils-growpart docker-novolume-plugin lvm2 iptables procps-ng xz oci-register-machine \
&& mkdir -p /usr/lib/modules && dnf clean all
RUN ln -s /usr/libexec/docker/docker-runc-current /usr/bin/docker-runc