abdullahmubeen10 commited on
Commit
96bbfb7
1 Parent(s): b0dce8d

Update Dockerfile

Browse files
Files changed (1) hide show
  1. 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
- # Copy the application code into the container
69
- COPY streamlit.py ${HOME}/streamlit.py # Explicitly copy the streamlit.py file
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