From b03ad67f32006e21797f60c4b8a071d9cef38e0b Mon Sep 17 00:00:00 2001 From: William Lane Date: Sun, 19 Mar 2023 19:30:38 -0700 Subject: [PATCH] expose 8080 --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index 7a70830..c50d5be 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,5 +13,8 @@ ADD . . # Install any needed packages specified in requirements.txt RUN pip install -r requirements.txt +# Make port 80 available to the world outside this container +EXPOSE 8080 + # Run run.py when the container launches CMD ["python", "run.py"]