Update Dockerfile
Browse files- Dockerfile +1 -2
Dockerfile
CHANGED
@@ -1,13 +1,12 @@
|
|
1 |
FROM python:3.9-slim
|
2 |
|
3 |
WORKDIR /app
|
4 |
-
RUN apt-get update
|
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 |
-
software-properties-common \
|
11 |
git \
|
12 |
&& rm -rf /var/lib/apt/lists/*
|
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 |
|