Commit
·
94d3611
1
Parent(s):
81b6ff1
small fixes
Browse files- .streamlit/config.toml +2 -1
- Dockerfile +1 -1
.streamlit/config.toml
CHANGED
@@ -3,4 +3,5 @@ gatherUsageStats = false
|
|
3 |
[server]
|
4 |
enableWebsocketCompression = false
|
5 |
enableXsrfProtection = false
|
6 |
-
enableCORS = false
|
|
|
|
3 |
[server]
|
4 |
enableWebsocketCompression = false
|
5 |
enableXsrfProtection = false
|
6 |
+
enableCORS = false
|
7 |
+
port = 7860
|
Dockerfile
CHANGED
@@ -7,4 +7,4 @@ COPY ./requirements.txt /app/requirements.txt
|
|
7 |
RUN pip install --no-cache-dir -r /app/requirements.txt
|
8 |
|
9 |
EXPOSE 7860
|
10 |
-
CMD streamlit run app.py
|
|
|
7 |
RUN pip install --no-cache-dir -r /app/requirements.txt
|
8 |
|
9 |
EXPOSE 7860
|
10 |
+
CMD streamlit run /app/app.py
|