rein0421 commited on
Commit
447d295
·
verified ·
1 Parent(s): 10efcee

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -10,7 +10,7 @@ COPY . .
10
  # OpenCVやdlibの依存関係をインストール
11
  # Pythonの依存関係をインストール
12
  RUN pip install --no-cache-dir --upgrade pip && \
13
- pip install --no-cache-dir --only-binary=:all: dlib && \
14
  pip install --no-cache-dir --upgrade -r /app/requirements.txt
15
 
16
 
 
10
  # OpenCVやdlibの依存関係をインストール
11
  # Pythonの依存関係をインストール
12
  RUN pip install --no-cache-dir --upgrade pip && \
13
+ pip install --no-cache-dir dlib==19.24.2 && \
14
  pip install --no-cache-dir --upgrade -r /app/requirements.txt
15
 
16