Arghya Ghosh commited on
Commit
91a7111
·
verified ·
1 Parent(s): 5dda114

Update Dockerfile

Browse files
Files changed (1) hide show
  1. 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