We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a3b4bb7 commit 943d831Copy full SHA for 943d831
Makefile
@@ -13,7 +13,7 @@ SHELL=/bin/bash
13
.PHONY: dashboard
14
.PHONY: dashboardd
15
.PHONY: requirements-install
16
-.PHONY: netlify-dashboard
+.PHONY: netlify-dashboard-docker
17
18
# start dagster locally
19
local:
@@ -66,6 +66,6 @@ dashboardd:
66
requirements-install:
67
pip install -r requirements.txt
68
69
-netlify-dashboard:
70
- pip install -r requirements.txt
71
- python dashboard/app.py
+netlify-dashboard-docker:
+ docker build -t anomstack-dashboard -f docker/Dockerfile.anomstack_dashboard .
+ docker run -p 5003:5003 anomstack-dashboard
0 commit comments