Spaces:
Paused
Paused
Update Dockerfile
Browse files- Dockerfile +3 -2
Dockerfile
CHANGED
|
@@ -4,9 +4,10 @@ FROM python:3.9-slim
|
|
| 4 |
# Set the working directory
|
| 5 |
WORKDIR /app
|
| 6 |
|
| 7 |
-
# Install system dependencies
|
|
|
|
| 8 |
RUN apt-get update && apt-get install -y \
|
| 9 |
-
libgl1
|
| 10 |
libglib2.0-0 \
|
| 11 |
&& rm -rf /var/lib/apt/lists/*
|
| 12 |
|
|
|
|
| 4 |
# Set the working directory
|
| 5 |
WORKDIR /app
|
| 6 |
|
| 7 |
+
# Install system dependencies
|
| 8 |
+
# FIX: Replaced 'libgl1-mesa-glx' with 'libgl1' and 'libglx-mesa0'
|
| 9 |
RUN apt-get update && apt-get install -y \
|
| 10 |
+
libgl1 \
|
| 11 |
libglib2.0-0 \
|
| 12 |
&& rm -rf /var/lib/apt/lists/*
|
| 13 |
|