Skip to content

Commit 135a841

Browse files
committed
chore: Update Dockerfile to include custom sources.list for ffmpeg installation
1 parent bd86462 commit 135a841

File tree

1 file changed

+1
-8
lines changed

1 file changed

+1
-8
lines changed

Dockerfile

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,7 @@
11
FROM node:12.16.2-stretch
22

33

4-
ENV DEBIAN_FRONTEND=noninteractive
5-
RUN echo "deb http://deb.debian.org/debian stretch main" > /etc/apt/sources.list \
6-
&& echo "deb-src http://deb.debian.org/debian stretch main" >> /etc/apt/sources.list \
7-
&& echo "deb http://deb.debian.org/debian stretch-updates main" >> /etc/apt/sources.list \
8-
&& echo "deb-src http://deb.debian.org/debian stretch-updates main" >> /etc/apt/sources.list \
9-
&& echo "deb http://security.debian.org/debian-security stretch/updates main" >> /etc/apt/sources.list \
10-
&& echo "deb-src http://security.debian.org/debian-security stretch/updates main" >> /etc/apt/sources.list
11-
4+
COPY sources.list /etc/apt/sources.list
125
RUN apt update && apt install ffmpeg -y
136

147

0 commit comments

Comments
 (0)