소스 검색

sorry, it ctrl+c's pot

Tinger 2 년 전
부모
커밋
05ffe2d862
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      Dockerfile

+ 1 - 1
Dockerfile

@@ -7,7 +7,7 @@ COPY requires.cpu .
 ARG tuna=https://pypi.tuna.tsinghua.edu.cn/simple
 
 RUN pip install --no-cache-dir --upgrade pip -i $tuna && \
- pip install --no-cache-dir -r requires.gpu -i $tuna && \
+ pip install --no-cache-dir -r requires.cpu -i $tuna && \
  sed -i "s@http://deb.debian.org@https://mirrors.tuna.tsinghua.edu.cn@g" /etc/apt/sources.list && \
  apt update && apt install -y libgl1-mesa-glx --no-install-recommends && \
  apt-get clean && rm -rf /var/lib/apt/lists/*