enricorampazzo commited on
Commit
475496e
·
verified ·
1 Parent(s): 3e6c65f

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +4 -3
Dockerfile CHANGED
@@ -3,8 +3,9 @@ SHELL ["/bin/bash", "-c"]
3
  RUN python -m venv venv
4
  RUN source venv/bin/activate
5
  RUN ls -a
6
- COPY ./requirements.txt requirements.txt
7
- RUN mkdir deps
8
- COPY ./deps/intel_npu_acceleration_library-1.3.0-cp310-cp310-linux_x86_64.whl deps
 
9
  RUN pip install -r requirements.txt
10
  ENTRYPOINT streamlit app.py
 
3
  RUN python -m venv venv
4
  RUN source venv/bin/activate
5
  RUN ls -a
6
+ RUN mkdir app
7
+ COPY . app
8
+ RUN mkdir app/deps
9
+ WORKDIR app
10
  RUN pip install -r requirements.txt
11
  ENTRYPOINT streamlit app.py