From 5aadba50c90de7a08c7e5d1ba55100b863841de5 Mon Sep 17 00:00:00 2001 From: Stephan Fitzpatrick Date: Tue, 11 Jun 2024 17:45:02 -0700 Subject: [PATCH] chore: Remove unnecessary environment variables in Dockerfile --- Dockerfile | 3 --- 1 file changed, 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index bedea08..e9c2621 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,7 +8,4 @@ RUN uv pip install -r requirements.txt COPY . . -ENV GRADIO_SERVER_NAME="0.0.0.0" -ENV GRADIO_SERVER_PORT="8080" - CMD .venv/bin/granian --interface asgi --port 8080 --host 0.0.0.0 main:app