bharathmunakala commited on
Commit
30ff2e5
·
verified ·
1 Parent(s): a74034c

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +6 -0
Dockerfile CHANGED
@@ -2,6 +2,12 @@ FROM python:3.9-slim
2
 
3
  WORKDIR /app
4
 
 
 
 
 
 
 
5
  RUN apt-get update && apt-get install -y \
6
  build-essential \
7
  curl \
 
2
 
3
  WORKDIR /app
4
 
5
+ # Set environment variable for Streamlit config
6
+ ENV HOME=/app
7
+
8
+ # Create .streamlit directory and give permissions
9
+ RUN mkdir -p /app/.streamlit && chmod -R 777 /app
10
+
11
  RUN apt-get update && apt-get install -y \
12
  build-essential \
13
  curl \