From 41add5025655091d24fd9cbfdde800a803a6175b Mon Sep 17 00:00:00 2001 From: Stepan Vladovskii Date: Tue, 13 Feb 2024 16:42:16 -0300 Subject: [PATCH 1/2] feat: change port to 8000 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 9ce2d47..63ecda5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ FROM python:slim WORKDIR /app # Add metadata to the image to describe that the container is listening on port 80 -EXPOSE 80 +EXPOSE 8000 # Copy the current directory contents into the container at /app COPY . /app From 82226bdcb5cbc0ad1bf75becbb3eeb5a98b67572 Mon Sep 17 00:00:00 2001 From: Stepan Vladovskii Date: Tue, 13 Feb 2024 17:08:13 -0300 Subject: [PATCH 2/2] feat: change port to 80 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 63ecda5..9ce2d47 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ FROM python:slim WORKDIR /app # Add metadata to the image to describe that the container is listening on port 80 -EXPOSE 8000 +EXPOSE 80 # Copy the current directory contents into the container at /app COPY . /app