ishworrsubedii commited on
Commit
3c1d78b
·
1 Parent(s): d9e79bd

update: dockerfile without version ffmpge

Browse files
Files changed (1) hide show
  1. Dockerfile +4 -1
Dockerfile CHANGED
@@ -5,9 +5,12 @@ ENV DEBIAN_FRONTEND=noninteractive
5
 
6
  # Install system dependencies
7
  RUN apt-get update && apt-get install -y \
 
 
 
8
  python3.9 \
9
  python3-pip \
10
- ffmpeg=7:4.4.2-0ubuntu0.22.04.1+esm5 \
11
  imagemagick \
12
  && rm -rf /var/lib/apt/lists/*
13
 
 
5
 
6
  # Install system dependencies
7
  RUN apt-get update && apt-get install -y \
8
+ software-properties-common && \
9
+ add-apt-repository -y ppa:ubuntu-toolchain-r/test && \
10
+ apt-get update && apt-get install -y \
11
  python3.9 \
12
  python3-pip \
13
+ ffmpeg \
14
  imagemagick \
15
  && rm -rf /var/lib/apt/lists/*
16