You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airavata.apache.org by ma...@apache.org on 2021/10/28 21:06:42 UTC

[airavata-django-portal] branch develop updated: AIRAVATA-3536 Switch to Node 14 LTS to fix build issue with Node 16

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

machristie pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/airavata-django-portal.git


The following commit(s) were added to refs/heads/develop by this push:
     new cf26676  AIRAVATA-3536 Switch to Node 14 LTS to fix build issue with Node 16
cf26676 is described below

commit cf26676c66a68a0c79ae6e9d3d0c59267950d2b8
Author: Marcus Christie <ma...@apache.org>
AuthorDate: Thu Oct 28 17:06:32 2021 -0400

    AIRAVATA-3536 Switch to Node 14 LTS to fix build issue with Node 16
---
 Dockerfile | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Dockerfile b/Dockerfile
index 3959cab..83cdeb4 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,5 +1,5 @@
-# node:lts is based on Debian and includes necessary build tools
-FROM node:lts as build-stage
+# node image is based on Debian and includes necessary build tools
+FROM node:14 as build-stage
 
 # build api javascript
 # api must come first, then common, since the others depend on these