methunraj
commited on
Commit
·
13c02b6
1
Parent(s):
a4bbc2c
fix: correct gradio env vars case sensitivity
Browse filesUse lowercase 'false' for GRADIO_SHARE and GRADIO_DEBUG to maintain consistency with boolean env var conventions
- Dockerfile +2 -2
Dockerfile
CHANGED
@@ -102,8 +102,8 @@ RUN chown -R app:app /app \
|
|
102 |
ENV PYTHONPATH=/app
|
103 |
ENV GRADIO_SERVER_NAME=0.0.0.0
|
104 |
ENV GRADIO_SERVER_PORT=7860
|
105 |
-
ENV GRADIO_SHARE=
|
106 |
-
ENV GRADIO_DEBUG=
|
107 |
|
108 |
# Matplotlib configuration for headless operation
|
109 |
ENV MPLBACKEND=Agg
|
|
|
102 |
ENV PYTHONPATH=/app
|
103 |
ENV GRADIO_SERVER_NAME=0.0.0.0
|
104 |
ENV GRADIO_SERVER_PORT=7860
|
105 |
+
ENV GRADIO_SHARE=false
|
106 |
+
ENV GRADIO_DEBUG=false
|
107 |
|
108 |
# Matplotlib configuration for headless operation
|
109 |
ENV MPLBACKEND=Agg
|