From c01a78762643028fefb9ab5c4f45777af1cc9ee3 Mon Sep 17 00:00:00 2001 From: Eduardo <7409128+edo0xff@users.noreply.github.com> Date: Sun, 19 Oct 2025 15:54:47 -0600 Subject: [PATCH] Change exposed port from 5000 to 8000 in Dockerfile Updated the Dockerfile to expose port 8000 instead of 5000. This aligns the container's exposed port with the application's expected runtime port. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index dafc9bb..f248863 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,6 +4,6 @@ WORKDIR /usr/src/app COPY requirements.txt ./ RUN pip install --no-cache-dir -r requirements.txt COPY . . -EXPOSE 5000 +EXPOSE 8000 ENTRYPOINT ["python"] CMD ["application.py"]