[docker] fix, Dockerfile for frontend builds (#9114)

* fix dockerfile for frontend builds

* fix paths

* empty commit for CI

* adjust version_info.json

* making version_info work

* rat

* fixing docker-compose node service

* address feedback
This commit is contained in:
David Aaron Suddjian
2020-02-12 07:48:24 -08:00
committed by GitHub
parent 30b7064e30
commit 966d321703
7 changed files with 9 additions and 6 deletions

View File

@@ -50,7 +50,7 @@ print("VERSION: " + version_string)
print("GIT SHA: " + GIT_SHA)
print("-==-" * 15)
VERSION_INFO_FILE = os.path.join(BASE_DIR, "superset-frontend", "version_info.json")
VERSION_INFO_FILE = os.path.join(BASE_DIR, "superset", "static", "version_info.json")
with open(VERSION_INFO_FILE, "w") as version_file:
json.dump(version_info, version_file)