wyyadd commited on
Commit
37ac63e
·
1 Parent(s): a27b153

feat: update dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +8 -0
Dockerfile CHANGED
@@ -3,6 +3,14 @@ FROM python:3.12
3
  # Set the working directory
4
  WORKDIR /app
5
 
 
 
 
 
 
 
 
 
6
  # Copy only requirements file first (for better caching)
7
  COPY requirements.txt ./
8
 
 
3
  # Set the working directory
4
  WORKDIR /app
5
 
6
+ # Install system dependencies
7
+ RUN apt-get update && apt-get install -y \
8
+ ffmpeg \
9
+ libsm6 \
10
+ libxext6 \
11
+ libhdf5-dev \
12
+ && rm -rf /var/lib/apt/lists/*
13
+
14
  # Copy only requirements file first (for better caching)
15
  COPY requirements.txt ./
16