Dan Flower commited on
Commit
0a783c4
·
1 Parent(s): 69e3ac6

troubleshoot acess to /streamlit, invoke chat UI

Browse files
Files changed (4) hide show
  1. Dockerfile +3 -0
  2. model/__init__.py +0 -0
  3. modules/__init__.py +0 -0
  4. utils/__init__.py +0 -0
Dockerfile CHANGED
@@ -30,3 +30,6 @@ ENV BROWSER_GATHER_USAGE_STATS=false
30
 
31
  # Optional: disable telemetry explicitly
32
  RUN echo "[browser]\ngatherUsageStats = false" > /tmp/.streamlit/config.toml
 
 
 
 
30
 
31
  # Optional: disable telemetry explicitly
32
  RUN echo "[browser]\ngatherUsageStats = false" > /tmp/.streamlit/config.toml
33
+
34
+ # Set up .streamlit path permissions and force ownership
35
+ RUN mkdir -p /.streamlit && chmod -R 777 /.streamlit
model/__init__.py ADDED
File without changes
modules/__init__.py ADDED
File without changes
utils/__init__.py ADDED
File without changes