fix: bump node version on Dockerfile to be on par with docker-compose (#10813)

This commit is contained in:
Fabio Guarini
2020-09-09 11:53:03 -03:00
committed by GitHub
parent 782f678732
commit 3b4a992861

View File

@@ -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}