sayakpaul HF staff commited on
Commit
73f2f4f
·
verified ·
1 Parent(s): cc9983b

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -1
Dockerfile CHANGED
@@ -29,7 +29,9 @@ RUN apt install -y bash \
29
  rm -rf /var/lib/apt/lists
30
 
31
  RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
32
- RUN pip install q8_kernels-0.0.0-cp39-cp39-linux_x86_64.whl
 
 
33
 
34
  # Set up a new user named "user" with user ID 1000
35
  RUN useradd -m -u 1000 user
 
29
  rm -rf /var/lib/apt/lists
30
 
31
  RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
32
+
33
+ COPY ./q8_kernels-0.0.0-cp39-cp39-linux_x86_64.whl /code/q8_kernels-0.0.0-cp39-cp39-linux_x86_64.whl
34
+ RUN pip install /code/q8_kernels-0.0.0-cp39-cp39-linux_x86_64.whl
35
 
36
  # Set up a new user named "user" with user ID 1000
37
  RUN useradd -m -u 1000 user