You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by cr...@apache.org on 2020/09/09 14:54:27 UTC

[incubator-superset] branch master updated: fix: bump node version on Dockerfile to be on par with docker-compose (#10813)

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

craigrueda pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-superset.git


The following commit(s) were added to refs/heads/master by this push:
     new 3b4a992  fix: bump node version on Dockerfile to be on par with docker-compose (#10813)
3b4a992 is described below

commit 3b4a992861e9c6942b37a162316e2be9d48b380b
Author: Fabio Guarini <fg...@users.noreply.github.com>
AuthorDate: Wed Sep 9 11:53:03 2020 -0300

    fix: bump node version on Dockerfile to be on par with docker-compose (#10813)
---
 Dockerfile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Dockerfile b/Dockerfile
index 49741ef..9617a1b 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -44,7 +44,7 @@ RUN cd /app \
 ######################################################################
 # Node stage to deal with static asset construction
 ######################################################################
-FROM node:10-jessie AS superset-node
+FROM node:12 AS superset-node
 
 ARG NPM_BUILD_CMD="build"
 ENV BUILD_CMD=${NPM_BUILD_CMD}