Spaces:
Sleeping
Sleeping
Zhen Ye commited on
Commit ·
de201ae
1
Parent(s): e3d211f
fix: add ca-certificates for wget https support
Browse files- Dockerfile +6 -5
Dockerfile
CHANGED
|
@@ -7,11 +7,12 @@ WORKDIR /app
|
|
| 7 |
|
| 8 |
COPY requirements.txt ./
|
| 9 |
RUN apt-get update && apt-get install -y --no-install-recommends \
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
|
|
|
| 15 |
&& rm -rf /var/lib/apt/lists/* \
|
| 16 |
&& pip install --no-cache-dir --upgrade pip \
|
| 17 |
&& pip install --no-cache-dir -r requirements.txt \
|
|
|
|
| 7 |
|
| 8 |
COPY requirements.txt ./
|
| 9 |
RUN apt-get update && apt-get install -y --no-install-recommends \
|
| 10 |
+
git \
|
| 11 |
+
wget \
|
| 12 |
+
ca-certificates \
|
| 13 |
+
libgl1 \
|
| 14 |
+
libglib2.0-0 \
|
| 15 |
+
ffmpeg \
|
| 16 |
&& rm -rf /var/lib/apt/lists/* \
|
| 17 |
&& pip install --no-cache-dir --upgrade pip \
|
| 18 |
&& pip install --no-cache-dir -r requirements.txt \
|