Spaces:
Sleeping
Sleeping
devjas1
commited on
Commit
·
d351301
1
Parent(s):
5e6ebd2
(FIX)[Correct Filename Case in Dockerfile and README]: Change 'App.py' to 'app.py' for consistency in entry point and app file reference
Browse files- Dockerfile +1 -1
- README.md +1 -1
Dockerfile
CHANGED
@@ -18,4 +18,4 @@ EXPOSE 8501
|
|
18 |
|
19 |
HEALTHCHECK CMD curl --fail http://localhost:8501/_stcore/health
|
20 |
|
21 |
-
ENTRYPOINT ["streamlit", "run", "
|
|
|
18 |
|
19 |
HEALTHCHECK CMD curl --fail http://localhost:8501/_stcore/health
|
20 |
|
21 |
+
ENTRYPOINT ["streamlit", "run", "app.py", "--server.port=8501", "--server.address=0.0.0.0"]
|
README.md
CHANGED
@@ -4,7 +4,7 @@ emoji: 🔬
|
|
4 |
colorFrom: indigo
|
5 |
colorTo: yellow
|
6 |
sdk: streamlit
|
7 |
-
app_file:
|
8 |
pinned: false
|
9 |
license: apache-2.0
|
10 |
---
|
|
|
4 |
colorFrom: indigo
|
5 |
colorTo: yellow
|
6 |
sdk: streamlit
|
7 |
+
app_file: app.py
|
8 |
pinned: false
|
9 |
license: apache-2.0
|
10 |
---
|