habulaj commited on
Commit
4b59353
·
verified ·
1 Parent(s): 261959f

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -4,9 +4,9 @@
4
  FROM python:3.9
5
 
6
 
7
- # Install ffmpeg
8
  USER root
9
- RUN apt-get update && apt-get install -y ffmpeg && rm -rf /var/lib/apt/lists/*
10
 
11
  RUN useradd -m -u 1000 user
12
  USER user
 
4
  FROM python:3.9
5
 
6
 
7
+ # Install ffmpeg and libsndfile1 (for torchaudio/soundfile)
8
  USER root
9
+ RUN apt-get update && apt-get install -y ffmpeg libsndfile1 && rm -rf /var/lib/apt/lists/*
10
 
11
  RUN useradd -m -u 1000 user
12
  USER user