diff --git a/Dockerfile b/Dockerfile index 327e538..3ae7ca6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ # code from a streamlit app Peter made. the commands should be relevant to what I'm doing but stuff inside -FROM python:3.10-slim +FROM python:3.12-slim WORKDIR /app # copy everything in to the app folder (which we're already in) @@ -15,4 +15,4 @@ EXPOSE 8501 EXPOSE 5433 #runs the command I'd run to start the app -- these are called "flags" and they're like arguments but they're not -ENTRYPOINT ["streamlit", "run", "main.py", "--server.port=8501", "--browser.serverAddress=0.0.0.0", "--server.address=0.0.0.0", "–server.enableCORS False"] \ No newline at end of file +ENTRYPOINT ["streamlit", "run", "main.py", "--server.port=8501", "--browser.serverAddress=0.0.0.0", "--server.address=0.0.0.0", "–server.enableCORS False"]