Update Dockerfile
Browse files- Dockerfile +1 -0
Dockerfile
CHANGED
|
@@ -9,6 +9,7 @@ RUN apt-get update && apt-get install -y \
|
|
| 9 |
COPY requirements.txt ./
|
| 10 |
COPY *.py ./
|
| 11 |
COPY pages/ ./pages/
|
|
|
|
| 12 |
|
| 13 |
RUN pip3 install --no-cache-dir -r requirements.txt
|
| 14 |
|
|
|
|
| 9 |
COPY requirements.txt ./
|
| 10 |
COPY *.py ./
|
| 11 |
COPY pages/ ./pages/
|
| 12 |
+
COPY .streamlit/ ./.streamlit/ # Add this line
|
| 13 |
|
| 14 |
RUN pip3 install --no-cache-dir -r requirements.txt
|
| 15 |
|