Skip to content

Commit

Permalink
rename main file to app.py
Browse files Browse the repository at this point in the history
  • Loading branch information
akochari committed Nov 11, 2024
1 parent 5556b39 commit 60d4dd4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@ COPY app/test_predictions $HOME/app/test_predictions/
RUN python test_predictions/DECIMER_test_prediction.py

# Copy all files that the app needs
COPY app/Main.py $HOME/app/Main.py
COPY app/app.py $HOME/app/app.py
COPY app/pages $HOME/app/pages/

USER $USER
EXPOSE 8501

HEALTHCHECK CMD curl --fail http://localhost:8501/_stcore/health

ENTRYPOINT ["streamlit", "run", "Main.py", "--server.port=8501", "--server.address=0.0.0.0"]
ENTRYPOINT ["streamlit", "run", "app.py", "--server.port=8501", "--server.address=0.0.0.0"]
File renamed without changes.

0 comments on commit 60d4dd4

Please sign in to comment.