From 3f5f8706088fd6841d4ab968aa63fd96a1100597 Mon Sep 17 00:00:00 2001 From: Clement Verna Date: Aug 27 2018 08:00:13 +0000 Subject: 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 --- diff --git a/Dockerfile b/Dockerfile index aae6383..2766a72 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,8 +1,7 @@ -FROM registry.fedoraproject.org/fedora:28 +FROM registry.fedoraproject.org/fedora:rawhide ENV NAME=varnish \ VARNISH_VERSION=5.0.0 \ VERSION=0 \ - RELEASE=1 \ ARCH=x86_64 # Labels @@ -11,13 +10,12 @@ LABEL com.redhat.component="$NAME" \ summary="Varnish is an HTTP accelerator" \ description="Varnish is an HTTP accelerator designed for content-heavy dynamic web sites." \ version="$VERSION" \ - release="$RELEASE.$DISTTAG" \ architecture="$ARCH" \ usage="docker run -p :6081 -p :6082" \ io.k8s.description="Varnish is an HTTP accelerator designed for content-heavy dynamic web sites." \ io.k8s.display-name="Varnish" \ io.openshift.expose-services="6801:http,6802:http" \ - io.openshift.tags="http,proxy,varnish,varnish5" + io.openshift.tags="http,proxy,varnish,varnish5" # Install varnish RUN dnf install -y --nogpgcheck varnish && \