Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
|
@@ -2,7 +2,7 @@ FROM python:3.10-slim
|
|
| 2 |
|
| 3 |
WORKDIR /app
|
| 4 |
COPY requirements_api_space.txt .
|
| 5 |
-
RUN apt-get update && apt-get install -y
|
| 6 |
pip install --upgrade pip && \
|
| 7 |
pip install --no-cache-dir -r requirements_api_space.txt && \
|
| 8 |
apt-get clean && \
|
|
|
|
| 2 |
|
| 3 |
WORKDIR /app
|
| 4 |
COPY requirements_api_space.txt .
|
| 5 |
+
RUN apt-get update && apt-get install -y --no-install-recommends libgl1 libglib2.0-0 && \
|
| 6 |
pip install --upgrade pip && \
|
| 7 |
pip install --no-cache-dir -r requirements_api_space.txt && \
|
| 8 |
apt-get clean && \
|