enricorampazzo commited on
Commit
90ad8f9
·
verified ·
1 Parent(s): 0561cd6

Update Dockerfile

Browse files

added line to copy requirements

Files changed (1) hide show
  1. Dockerfile +1 -0
Dockerfile CHANGED
@@ -2,5 +2,6 @@ FROM python:3.10
2
  SHELL ["/bin/bash", "-c"]
3
  RUN python -m venv venv
4
  RUN source venv/bin/activate
 
5
  RUN pip install -r requirements.txt
6
  ENTRYPOINT streamlit app.py
 
2
  SHELL ["/bin/bash", "-c"]
3
  RUN python -m venv venv
4
  RUN source venv/bin/activate
5
+ COPY ./requirements.txt requirements.txt
6
  RUN pip install -r requirements.txt
7
  ENTRYPOINT streamlit app.py