Skip to content

Commit fa33fae

Browse files
committed
Dockerfile: check static/js/admin-react.js exists
1 parent a3b20bb commit fa33fae

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

dockerfiles/test.py

+6-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@
44

55
print(f"DATA_FILES_PATH={DATA_FILES_PATH}")
66

7-
for sub_path in ("templates", "static/components", "static/css/style.min.css"):
7+
for sub_path in (
8+
"templates",
9+
"static/components",
10+
"static/css/style.min.css",
11+
"static/js/admin-react.js",
12+
):
813
path = os.path.join(DATA_FILES_PATH, sub_path)
914
assert os.path.exists(path), path

0 commit comments

Comments
 (0)