Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- Dockerfile +3 -3
Dockerfile
CHANGED
|
@@ -5,12 +5,12 @@ FROM python:3.10-slim
|
|
| 5 |
|
| 6 |
# OpenCV and other libs need these
|
| 7 |
RUN apt-get update && apt-get install -y --no-install-recommends \
|
| 8 |
-
libgl1
|
| 9 |
libglib2.0-0 \
|
| 10 |
libsm6 \
|
| 11 |
libxext6 \
|
| 12 |
-
|
| 13 |
-
|
| 14 |
|
| 15 |
WORKDIR /app
|
| 16 |
|
|
|
|
| 5 |
|
| 6 |
# OpenCV and other libs need these
|
| 7 |
RUN apt-get update && apt-get install -y --no-install-recommends \
|
| 8 |
+
libgl1 \
|
| 9 |
libglib2.0-0 \
|
| 10 |
libsm6 \
|
| 11 |
libxext6 \
|
| 12 |
+
libxrender1 \
|
| 13 |
+
&& rm -rf /var/lib/apt/lists/*
|
| 14 |
|
| 15 |
WORKDIR /app
|
| 16 |
|