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

Update Dockerfile

Browse files

copied WHLs into docker space

Files changed (1) hide show
  1. Dockerfile +1 -0
Dockerfile CHANGED
@@ -3,5 +3,6 @@ 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
 
3
  RUN python -m venv venv
4
  RUN source venv/bin/activate
5
  COPY ./requirements.txt requirements.txt
6
+ COPY ./deps/*.whl deps
7
  RUN pip install -r requirements.txt
8
  ENTRYPOINT streamlit app.py