You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by ro...@apache.org on 2020/04/30 11:39:02 UTC

[cloudstack-primate] branch master updated: Dockerfile: update labels

This is an automated email from the ASF dual-hosted git repository.

rohit pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/cloudstack-primate.git


The following commit(s) were added to refs/heads/master by this push:
     new 4354ac3  Dockerfile: update labels
4354ac3 is described below

commit 4354ac3af6ff38cb483d320438e4e51d4dcdfc1f
Author: Rohit Yadav <ro...@shapeblue.com>
AuthorDate: Thu Apr 30 17:08:41 2020 +0530

    Dockerfile: update labels
    
    Signed-off-by: Rohit Yadav <ro...@shapeblue.com>
---
 Dockerfile | 11 ++++++++---
 1 file changed, 8 insertions(+), 3 deletions(-)

diff --git a/Dockerfile b/Dockerfile
index ef4a646..3e5de79 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -17,13 +17,18 @@
 
 FROM node:10-buster AS build
 
+MAINTAINER "Apache CloudStack" <de...@cloudstack.apache.org>
+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