From cb4f7b8e5dd4b398b283a1e0145d4eb9517aa7be Mon Sep 17 00:00:00 2001 From: Mert Cobanov Date: Wed, 1 May 2024 19:40:10 +0300 Subject: [PATCH] Update Dockerfile to use 127.0.0.1 as the server name --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index a618844..ca536c4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -17,7 +17,7 @@ COPY . . EXPOSE 7860 # Set the environment variable -ENV GRADIO_SERVER_NAME="0.0.0.0" +ENV GRADIO_SERVER_NAME="127.0.0.1" # Define the command to run the application CMD ["python", "webui.py"]