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 2022/09/14 07:18:21 UTC

[cloudstack] branch main updated: UI: Build Dockerfile with Node v14 (#6712)

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

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


The following commit(s) were added to refs/heads/main by this push:
     new ba35437da7d UI: Build Dockerfile with Node v14 (#6712)
ba35437da7d is described below

commit ba35437da7db21ccd536720356fb018049711aad
Author: Wido den Hollander <wi...@widodh.nl>
AuthorDate: Wed Sep 14 09:18:14 2022 +0200

    UI: Build Dockerfile with Node v14 (#6712)
    
    Node versions >14 throw errors when building and thus do not allow to
    build the UI.
    
    Pinning to v14 allows us to build and run the UI Docker container.
---
 ui/Dockerfile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ui/Dockerfile b/ui/Dockerfile
index b097a333fb3..d636ae5657e 100644
--- a/ui/Dockerfile
+++ b/ui/Dockerfile
@@ -17,7 +17,7 @@
 
 # Build example: docker build -t <name> .
 
-FROM node:lts-stretch AS build
+FROM node:14-bullseye AS build
 
 MAINTAINER "Apache CloudStack" <de...@cloudstack.apache.org>
 LABEL Description="Apache CloudStack UI; Modern role-base progressive UI for Apache CloudStack"