devve1 commited on
Commit
bd6125b
1 Parent(s): 215b4f6

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +8 -0
Dockerfile CHANGED
@@ -36,6 +36,14 @@ COPY pip.conf $VIRTUAL_ENV/pip.conf
36
 
37
  RUN pip3 install onnxruntime-gpu==1.17.1
38
 
 
 
 
 
 
 
 
 
39
  RUN useradd -m -u 1000 user
40
  USER user
41
 
 
36
 
37
  RUN pip3 install onnxruntime-gpu==1.17.1
38
 
39
+ RUN git clone https://github.com/ModelCloud/GPTQModel.git /data/GPTQModel
40
+
41
+ WORKDIR /data/GPTQModel
42
+
43
+ RUN pip install -vvv --no-build-isolation .
44
+
45
+ WORKDIR /data
46
+
47
  RUN useradd -m -u 1000 user
48
  USER user
49