Spaces:
Running
Running
Update Dockerfile
Browse files- Dockerfile +2 -3
Dockerfile
CHANGED
|
@@ -65,9 +65,8 @@ RUN python3.8 -m pip install --upgrade pip
|
|
| 65 |
COPY requirements.txt /tmp/requirements.txt
|
| 66 |
RUN python3.8 -m pip install -r /tmp/requirements.txt
|
| 67 |
|
| 68 |
-
#
|
| 69 |
-
COPY streamlit.py
|
| 70 |
-
COPY . ${HOME} # Copy the rest of the application
|
| 71 |
|
| 72 |
# Expose port for Streamlit
|
| 73 |
EXPOSE 7860
|
|
|
|
| 65 |
COPY requirements.txt /tmp/requirements.txt
|
| 66 |
RUN python3.8 -m pip install -r /tmp/requirements.txt
|
| 67 |
|
| 68 |
+
# Explicitly copy the streamlit.py file into the container
|
| 69 |
+
COPY streamlit.py /home/jovyan/streamlit.py
|
|
|
|
| 70 |
|
| 71 |
# Expose port for Streamlit
|
| 72 |
EXPOSE 7860
|