From 1bd5617883be8230aacc4bcbe6041175c73fc2d0 Mon Sep 17 00:00:00 2001 From: chris Date: Fri, 14 Aug 2020 08:39:01 +0200 Subject: [PATCH] set date label --- Dockerfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Dockerfile b/Dockerfile index 884c2ac..a56eace 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,7 @@ FROM reg.zknt.org/zknt/debian-php:7.4 as builder +ARG DATE + RUN set -xe;\ apt-install git unzip php-curl php-zip php-bcmath php-intl php-mbstring php-xml composer &&\ composer global require hirak/prestissimo --no-interaction --no-suggest --prefer-dist &&\ @@ -26,3 +28,5 @@ RUN apt-install php-curl php-zip php-bcmath php-intl php-mbstring php-xml optipn WORKDIR /var/www VOLUME /var/www/storage /var/www/bootstrap ENTRYPOINT /entrypoint.sh + +LABEL build.date=$DATE