From a95bd9d0330a88df9b9f69a8528a583af926702f Mon Sep 17 00:00:00 2001 From: Ian Fijolek Date: Fri, 16 Sep 2022 16:54:55 -0700 Subject: [PATCH] Fix incorrect port --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 8d0f6d3..709bfe1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,7 +8,7 @@ RUN pip install --no-cache-dir -r ./requirements.txt COPY ./main.py /app/ ENV BIND_HOST=0.0.0.0 -ENV BIND_PORT=500 +ENV BIND_PORT=5000 EXPOSE 5000