From 56356096d6b3c9d9b3b0642828c31aafb7647920 Mon Sep 17 00:00:00 2001 From: Rohit Yadav Date: Thu, 30 Apr 2020 17:08:41 +0530 Subject: [PATCH] Dockerfile: update labels Signed-off-by: Rohit Yadav --- ui/Dockerfile | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/ui/Dockerfile b/ui/Dockerfile index ef4a646b767..3e5de790de6 100644 --- a/ui/Dockerfile +++ b/ui/Dockerfile @@ -17,13 +17,18 @@ FROM node:10-buster AS build +MAINTAINER "Apache CloudStack" +LABEL Description="Apache CloudStack Primate; Modern role-base progressive UI for Apache CloudStack" +LABEL Vendor="Apache.org" +LABEL License=ApacheV2 +LABEL Version=0.4.0 + WORKDIR /build -RUN apt-get -y update && \ - apt-get -y upgrade +RUN apt-get -y update && apt-get -y upgrade COPY . /build/ -RUN npm install +RUN npm install RUN npm run build FROM nginx:alpine AS runtime