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/05/06 11:07:22 UTC

[cloudstack-primate] branch master updated: docker: fix Dockerfile build

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 9431b80  docker: fix Dockerfile build
9431b80 is described below

commit 9431b80e55febf7341fe5a3a2a9ba24fb9bdfe71
Author: Rohit Yadav <ro...@shapeblue.com>
AuthorDate: Wed May 6 16:36:51 2020 +0530

    docker: fix Dockerfile build
    
    Signed-off-by: Rohit Yadav <ro...@shapeblue.com>
---
 Dockerfile | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/Dockerfile b/Dockerfile
index 3e5de79..7469736 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -15,7 +15,9 @@
 # specific language governing permissions and limitations
 # under the License.
 
-FROM node:10-buster AS build
+# Build example: docker build -t cloudstack/primate:latest .
+
+FROM node:lts-buster AS build
 
 MAINTAINER "Apache CloudStack" <de...@cloudstack.apache.org>
 LABEL Description="Apache CloudStack Primate; Modern role-base progressive UI for Apache CloudStack"
@@ -33,7 +35,7 @@ RUN npm run build
 
 FROM nginx:alpine AS runtime
 
-LABEL org.opencontainers.image.title="CloudStack Primate" \
+LABEL org.opencontainers.image.title="Apache CloudStack Primate" \
 	org.opencontainers.image.description="A modern role-based progressive CloudStack UI" \
 	org.opencontainers.image.authors="Apache CloudStack Contributors" \
 	org.opencontainers.image.url="https://github.com/apache/cloudstack-primate" \