methunraj commited on
Commit
13c02b6
·
1 Parent(s): a4bbc2c

fix: correct gradio env vars case sensitivity

Browse files

Use lowercase 'false' for GRADIO_SHARE and GRADIO_DEBUG to maintain consistency with boolean env var conventions

Files changed (1) hide show
  1. 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=False
106
- ENV GRADIO_DEBUG=False
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