Update Dockerfile
Browse files- 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/
|
| 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
|