From 029183582e4d8abf029cbeabde6cd33206ddc282 Mon Sep 17 00:00:00 2001 From: Josh Wright Date: Sun, 18 Feb 2024 13:09:57 -0500 Subject: [PATCH] dockerfile: change exposed port to 2897 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 07fc1c7..6ded089 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,7 +15,7 @@ COPY . /app RUN pip install --no-cache-dir -r requirements.txt # Expose the Flask port -EXPOSE 5000 +EXPOSE 2897 # Copy static files and templates COPY ./templates /app/templates