Update Dockerfile
Browse files- Dockerfile +2 -1
Dockerfile
CHANGED
|
@@ -8,4 +8,5 @@ COPY --chown=user . $HOME/app
|
|
| 8 |
COPY ./requirements.txt ~/app/requirements.txt
|
| 9 |
RUN pip install -r requirements.txt
|
| 10 |
COPY . .
|
| 11 |
-
CMD ["streamlit", "run", "app.py", "--port", "7860"]
|
|
|
|
|
|
| 8 |
COPY ./requirements.txt ~/app/requirements.txt
|
| 9 |
RUN pip install -r requirements.txt
|
| 10 |
COPY . .
|
| 11 |
+
#CMD ["streamlit", "run", "app.py", "--port", "7860"]
|
| 12 |
+
ENTRYPOINT ["streamlit", "run", "app.py", "--server.port=8501", "--server.address=0.0.0.0"]
|