hzhwcmhf commited on
Commit
35e1c48
·
1 Parent(s): e3be0f3

fix dependency

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -3
Dockerfile CHANGED
@@ -10,9 +10,7 @@ RUN sed -i 's http://deb.debian.org http://cdn-aws.deb.debian.org g' /etc/apt/so
10
 
11
  RUN pip install --no-cache-dir Cython "gradio==3.28.3" "torch==1.10.1"
12
 
13
- RUN git clone --recurse-submodules https://github.com/thu-coai/DA-Transformer.git && cd DA-Transformer && git checkout demo && pip install -e .
14
-
15
- RUN cd dag_search && python3 setup.py build_ext --inplace && pip install -e . && cd ../..
16
 
17
  USER user
18
 
 
10
 
11
  RUN pip install --no-cache-dir Cython "gradio==3.28.3" "torch==1.10.1"
12
 
13
+ RUN git clone --recurse-submodules https://github.com/thu-coai/DA-Transformer.git && cd DA-Transformer && git checkout demo && pip install -e . && cd dag_search && python3 setup.py build_ext --inplace && pip install -e . && cd ../..
 
 
14
 
15
  USER user
16