yonikremer
commited on
Commit
•
a8307fa
1
Parent(s):
6e8ec8d
moved config to the docker file
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
@@ -18,4 +18,4 @@ ENV TOKENIZERS_PARALLELISM=false
|
|
18 |
COPY . /app/my_streamlit_app/
|
19 |
COPY ./.streamlit /app/my_streamlit_app/.streamlit/
|
20 |
|
21 |
-
CMD ["streamlit", "run", "/app/my_streamlit_app/app.py"]
|
|
|
18 |
COPY . /app/my_streamlit_app/
|
19 |
COPY ./.streamlit /app/my_streamlit_app/.streamlit/
|
20 |
|
21 |
+
CMD ["streamlit", "run", "--server.port", "7860", "--browser.gatherUsageStats", "false", "--theme.base", "dark", "/app/my_streamlit_app/app.py"]
|