Spaces:
Running
Running
Update Dockerfile
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
@@ -9,7 +9,7 @@ COPY . .
|
|
9 |
|
10 |
# 必要な依存関係(cmake, OpenCV, dlibなど)をインストール
|
11 |
RUN apt-get update && \
|
12 |
-
apt-get install -y cmake && \
|
13 |
pip install --no-cache-dir --upgrade pip && \
|
14 |
pip install --no-cache-dir --find-links https://github.com/trolltroll/python-dlib-wheels/releases/tag/v19.24.2 dlib==19.24.2 && \
|
15 |
pip install --no-cache-dir --upgrade -r /app/requirements.txt
|
|
|
9 |
|
10 |
# 必要な依存関係(cmake, OpenCV, dlibなど)をインストール
|
11 |
RUN apt-get update && \
|
12 |
+
apt-get install -y cmake g++ build-essential && \
|
13 |
pip install --no-cache-dir --upgrade pip && \
|
14 |
pip install --no-cache-dir --find-links https://github.com/trolltroll/python-dlib-wheels/releases/tag/v19.24.2 dlib==19.24.2 && \
|
15 |
pip install --no-cache-dir --upgrade -r /app/requirements.txt
|