From dbe53bec5281ae88c8a375103e46f80d768f0e36 Mon Sep 17 00:00:00 2001 From: Clement Verna Date: Mon, 27 Aug 2018 10:08:59 +0200 Subject: [PATCH] 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 --- Dockerfile | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 5ae6cfc..f162c3c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM registry.fedoraproject.org/fedora:26 +FROM registry.fedoraproject.org/fedora:29 # Description # This image provides an Apache 2.4 + PHP 7.0 environment for running PHP applications. @@ -20,7 +20,6 @@ RUN dnf install -y --setopt=tsflags=nodocs php php-opcache && \ ENV PHP_VERSION=7.0 \ NAME=php\ VERSION=0 \ - RELEASE=1 \ ARCH=x86_64 ENV HOME=/opt/app-root @@ -28,7 +27,6 @@ ENV HOME=/opt/app-root LABEL summary="php runtime" \ name="$FGC/$NAME" \ version="$VERSION" \ - release="$RELEASE.$DISTTAG" \ architecture="$ARCH" \ description="Platform for building and running PHP 7.0 applications." \ vendor="Fedora Project" \