Spaces:
Runtime error
Runtime error
Arghya Ghosh commited on
Update Dockerfile
Browse files- Dockerfile +6 -0
Dockerfile
CHANGED
|
@@ -1,6 +1,12 @@
|
|
| 1 |
# Base image with Python
|
| 2 |
FROM python:3.13
|
| 3 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 4 |
# Create a non-root user for Hugging Face Spaces
|
| 5 |
RUN useradd -m -u 1000 user
|
| 6 |
USER user
|
|
|
|
| 1 |
# Base image with Python
|
| 2 |
FROM python:3.13
|
| 3 |
|
| 4 |
+
# Install system dependencies
|
| 5 |
+
RUN apt-get update && apt-get install -y \
|
| 6 |
+
ffmpeg \
|
| 7 |
+
git \
|
| 8 |
+
&& rm -rf /var/lib/apt/lists/*
|
| 9 |
+
|
| 10 |
# Create a non-root user for Hugging Face Spaces
|
| 11 |
RUN useradd -m -u 1000 user
|
| 12 |
USER user
|