7H4M3R commited on
Commit
361f5a9
·
verified ·
1 Parent(s): 56a2c38

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +7 -8
Dockerfile CHANGED
@@ -1,14 +1,13 @@
1
  FROM python:3.9-slim
2
 
3
  WORKDIR /app
4
- RUN apt-get update && apt-get install -y software-properties-common
5
- RUN add-apt-repository -y ppa:savoury1/ffmpeg4
6
- RUN apt-get update && apt-get -qq install -y ffmpeg
7
- RUN apt-get install \
8
- build-essential \
9
- curl \
10
- git \
11
- && rm -rf /var/lib/apt/lists/*
12
 
13
  COPY requirements.txt ./
14
  COPY src/ ./src/
 
1
  FROM python:3.9-slim
2
 
3
  WORKDIR /app
4
+ RUN apt-get update && apt-get -qq install -y \
5
+ ffmpeg \
6
+ build-essential \
7
+ curl \
8
+ software-properties-common \
9
+ git \
10
+ && rm -rf /var/lib/apt/lists/*
 
11
 
12
  COPY requirements.txt ./
13
  COPY src/ ./src/