Gregniuki commited on
Commit
5351ee1
·
1 Parent(s): fd6d17c

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -0
Dockerfile CHANGED
@@ -1,6 +1,9 @@
1
  # read the doc: https://huggingface.co/docs/hub/spaces-sdks-docker
2
  # you will also find guides on how best to write your Dockerfile
 
3
 
 
 
4
  # Use the official Python 3.9 image as the base image
5
  FROM python:3.9
6
 
 
1
  # read the doc: https://huggingface.co/docs/hub/spaces-sdks-docker
2
  # you will also find guides on how best to write your Dockerfile
3
+ FROM debian:bullseye-slim
4
 
5
+ # Install FFmpeg
6
+ RUN apt-get update && apt-get install -y ffmpeg
7
  # Use the official Python 3.9 image as the base image
8
  FROM python:3.9
9