mazen2100 commited on
Commit
0060680
·
verified ·
1 Parent(s): 4fd1fb0

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -23,9 +23,9 @@ RUN mkdir -p /app/.streamlit \
23
  COPY requirements.txt .
24
  RUN pip install --no-cache-dir -r requirements.txt
25
 
26
- # 6. Copy your source app code
27
  COPY src/ ./src
28
- COPY .streamlit/config.toml /app/.streamlit/config.toml
29
 
30
  # 7. Expose Streamlit default port
31
  EXPOSE 8501
 
23
  COPY requirements.txt .
24
  RUN pip install --no-cache-dir -r requirements.txt
25
 
26
+ # 6. Copy your source app code and Streamlit config
27
  COPY src/ ./src
28
+ COPY .streamlit/ /app/.streamlit/
29
 
30
  # 7. Expose Streamlit default port
31
  EXPOSE 8501