Compare commits

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

3 commits

Author SHA1 Message Date
Clement Verna
b0d3ea12f5 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-20 17:40:28 +02:00
Patrick Uiterwijk
d3961d3cc1 Rawhide also never had 2.5.1
Signed-off-by: Patrick Uiterwijk <patrick@puiterwijk.org>
2018-01-09 18:30:34 +01:00
Randy Barlow
3d70d2203e Use rawhide in the FROM line of the container image.
Signed-off-by: Randy Barlow <randy@electronsweatshop.com>
2017-07-05 17:59:11 -04:00

View file

@ -1,14 +1,13 @@
FROM registry.fedoraproject.org/fedora:26
FROM registry.fedoraproject.org/fedora:rawhide
MAINTAINER "Randy Barlow" <bowlofeggs@fedoraproject.org>
ENV NAME=docker-distribution VERSION=2.5.1 RELEASE=1 ARCH=x86_64
ENV NAME=docker-distribution VERSION=2.6.2 ARCH=x86_64
LABEL BZComponent="$NAME" \
Name="$FGC/$NAME" \
Version="$VERSION" \
Release="$RELEASE.$DISTTAG" \
Architecture="$ARCH"
RUN dnf install -y docker-distribution-2.5.1 && dnf clean all
RUN dnf install -y docker-distribution-2.6.2 && dnf clean all
VOLUME ["/var/lib/registry"]
EXPOSE 5000