From 6c8ef3be9a93cd1194a9c05005e1dad43d5fa2ee Mon Sep 17 00:00:00 2001 From: Kameron Kenny Date: Thu, 2 Jan 2025 19:16:08 -0500 Subject: [PATCH] port 80 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index bca95cf..3e83d84 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,7 +14,7 @@ WORKDIR /app COPY ./index.html ./index.html # Expose the port you want to serve on -EXPOSE 8000 +EXPOSE 80 # Start the Python server -CMD ["python", "-m", "http.server", "8000"] +CMD ["python", "-m", "http.server", "80"]