From 8594dec0d4b1b048887fc979e3dd36db21aae257 Mon Sep 17 00:00:00 2001 From: Peter Dudfield <34686298+peterdudfield@users.noreply.github.com> Date: Fri, 8 Dec 2023 09:00:59 +0000 Subject: [PATCH] Update Dockerfile --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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"]