gilangf3000 commited on
Commit
90a984d
·
verified ·
1 Parent(s): 6549a49

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -33,5 +33,5 @@ RUN test -f requirements.txt && pip install --no-cache-dir -r requirements.txt |
33
  # Expose port untuk API
34
  EXPOSE 51379
35
 
36
- # Jalankan aplikasi Python
37
- ENTRYPOINT ["python3", "app.py"]
 
33
  # Expose port untuk API
34
  EXPOSE 51379
35
 
36
+ # Jalankan aplikasi Python dengan Panel
37
+ ENTRYPOINT ["panel", "serve", "app.py", "--port=51379", "--address=0.0.0.0", "--allow-websocket-origin=*"]