Skip to content

Commit 4ba3560

Browse files
committed
Fix dockerfile paths
1 parent b8ff502 commit 4ba3560

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ serve-oauth: ## Serve Panel dashboard - Prod mode with OAuth2. Needs: PANEL_OAU
5757
# --progress=plain
5858

5959
build-local:
60-
docker build -f ./Dockerfile \
60+
docker build -f ./panel/Dockerfile \
6161
--tag simdec-panel-local:$(version) \
6262
--pull \
6363
./.
@@ -78,7 +78,7 @@ run-local: build-local
7878

7979
# Need to specifically build on linux/amd64 to avoid issues on macOS M platform
8080
build:
81-
docker build -f ./Dockerfile \
81+
docker build -f ./panel/Dockerfile \
8282
--platform linux/amd64 \
8383
--tag simdec-panel:$(version) \
8484
--pull \

Dockerfile renamed to panel/Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@ CMD ["panel", "serve", "panel/app.py", \
6767
"--num-procs", "2", \
6868
"--allow-websocket-origin", "simdec.io", \
6969
"--allow-websocket-origin", "www.simdec.io", \
70+
"--allow-websocket-origin", "*", \
7071
"--allow-websocket-origin", "simdec-panel-h6musew72q-lz.a.run.app", \
7172
"--cookie-secret", "panel_cookie_secret_oauth", \
7273
"--basic-login-template", "panel/login.html", \

0 commit comments

Comments
 (0)