diff --git a/Dockerfile b/Dockerfile index 337af25..7a16a15 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,12 +9,8 @@ RUN apt-get update && apt-get install -y \ git \ && rm -rf /var/lib/apt/lists/* -RUN ls - +COPY . . RUN pip3 install -r requirements.txt -EXPOSE 8501 - -HEALTHCHECK CMD curl --fail http://localhost:8501/_stcore/health - -ENTRYPOINT ["streamlit", "run", "streamlit_app.py", "--server.port=8501", "--server.address=0.0.0.0"] \ No newline at end of file +EXPOSE 80 +ENTRYPOINT ["streamlit", "run", "streamlit_app.py", "--server.port=80", "--server.address=0.0.0.0"] \ No newline at end of file