Spaces:
Running
Running
Update Dockerfile
Browse files- Dockerfile +5 -0
Dockerfile
CHANGED
|
@@ -12,6 +12,11 @@ COPY requirements.txt ./
|
|
| 12 |
|
| 13 |
RUN pip3 install -r requirements.txt
|
| 14 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 15 |
EXPOSE 8501
|
| 16 |
|
| 17 |
HEALTHCHECK CMD curl --fail http://localhost:8501/_stcore/health
|
|
|
|
| 12 |
|
| 13 |
RUN pip3 install -r requirements.txt
|
| 14 |
|
| 15 |
+
# Copy all application files
|
| 16 |
+
COPY *.py ./
|
| 17 |
+
COPY .streamlit .streamlit/
|
| 18 |
+
COPY static static/
|
| 19 |
+
|
| 20 |
EXPOSE 8501
|
| 21 |
|
| 22 |
HEALTHCHECK CMD curl --fail http://localhost:8501/_stcore/health
|