Dockerfile: update labels

Signed-off-by: Rohit Yadav <rohit.yadav@shapeblue.com>
This commit is contained in:
Rohit Yadav 2020-04-30 17:08:41 +05:30
parent 16b359ceb3
commit 56356096d6
1 changed files with 8 additions and 3 deletions

View File

@ -17,13 +17,18 @@
FROM node:10-buster AS build
MAINTAINER "Apache CloudStack" <dev@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