Skip to content

Commit

Permalink
chore: Update Dockerfile to include Debian package sources for ffmpeg…
Browse files Browse the repository at this point in the history
… installation
  • Loading branch information
s045pd committed Jul 4, 2024
1 parent 4505835 commit e36a733
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
FROM node:12.16.2-stretch

RUN echo "deb http://deb.debian.org/debian stretch main" > /etc/apt/sources.list \
&& echo "deb-src http://deb.debian.org/debian stretch main" >> /etc/apt/sources.list \
&& echo "deb http://deb.debian.org/debian stretch-updates main" >> /etc/apt/sources.list \
&& echo "deb-src http://deb.debian.org/debian stretch-updates main" >> /etc/apt/sources.list \
&& echo "deb http://security.debian.org/debian-security stretch/updates main" >> /etc/apt/sources.list \
&& echo "deb-src http://security.debian.org/debian-security stretch/updates main" >> /etc/apt/sources.list

RUN apt update && apt install ffmpeg -y


Expand Down

0 comments on commit e36a733

Please sign in to comment.