Spaces:
Runtime error
Runtime error
fixes
Browse files- Dockerfile +4 -3
Dockerfile
CHANGED
|
@@ -1,4 +1,5 @@
|
|
| 1 |
FROM python:3.9-slim-bookworm
|
|
|
|
| 2 |
# Create non-root user for security
|
| 3 |
RUN useradd -m -u 1000 user
|
| 4 |
|
|
@@ -11,13 +12,13 @@ RUN apt-get update && apt-get install -y \
|
|
| 11 |
libgomp1 \
|
| 12 |
libgstreamer1.0-0 \
|
| 13 |
libgstreamer-plugins-base1.0-0 \
|
| 14 |
-
|
| 15 |
libgstreamer-plugins-bad1.0-0 \
|
| 16 |
gstreamer1.0-plugins-ugly \
|
| 17 |
gstreamer1.0-tools \
|
| 18 |
ffmpeg \
|
| 19 |
-
libgl1
|
| 20 |
-
|
| 21 |
wget \
|
| 22 |
curl \
|
| 23 |
&& apt-get clean \
|
|
|
|
| 1 |
FROM python:3.9-slim-bookworm
|
| 2 |
+
|
| 3 |
# Create non-root user for security
|
| 4 |
RUN useradd -m -u 1000 user
|
| 5 |
|
|
|
|
| 12 |
libgomp1 \
|
| 13 |
libgstreamer1.0-0 \
|
| 14 |
libgstreamer-plugins-base1.0-0 \
|
| 15 |
+
gstreamer1.0-plugins-good \
|
| 16 |
libgstreamer-plugins-bad1.0-0 \
|
| 17 |
gstreamer1.0-plugins-ugly \
|
| 18 |
gstreamer1.0-tools \
|
| 19 |
ffmpeg \
|
| 20 |
+
libgl1 \
|
| 21 |
+
libglx-mesa0 \
|
| 22 |
wget \
|
| 23 |
curl \
|
| 24 |
&& apt-get clean \
|