Skip to content
This repository has been archived by the owner on Jun 5, 2024. It is now read-only.

Commit

Permalink
Added ffmpeg dependencies to images
Browse files Browse the repository at this point in the history
djthorpe committed Oct 10, 2021
1 parent 503cd49 commit b3669d0
Showing 2 changed files with 10 additions and 2 deletions.
6 changes: 5 additions & 1 deletion Dockerfile-bionic
Original file line number Diff line number Diff line change
@@ -30,7 +30,11 @@ RUN curl -fsSL https://download.docker.com/linux/ubuntu/gpg | gpg --dearmor -o /
&& apt-get update -y && apt-get install -y docker-ce docker-ce-cli containerd.io

# install other build dependencies
RUN apt-get update -y && apt-get install -y pkg-config protobuf-compiler libprotobuf-dev libmosquitto-dev
RUN apt-get update -y && apt-get install -y pkg-config \
protobuf-compiler libprotobuf-dev \
libmosquitto-dev \
libavcodec-dev libavdevice-dev libavfilter-dev \
libavformat-dev libavresample-dev libavutil-dev libchromaprint-dev

# cd into the user directory, download and unzip the github actions runner
RUN cd /home/docker && mkdir actions-runner && cd actions-runner \
6 changes: 5 additions & 1 deletion Dockerfile-focal
Original file line number Diff line number Diff line change
@@ -30,7 +30,11 @@ RUN curl -fsSL https://download.docker.com/linux/ubuntu/gpg | gpg --dearmor -o /
&& apt-get update -y && apt-get install -y docker-ce docker-ce-cli containerd.io

# install other build dependencies
RUN apt-get update -y && apt-get install -y pkg-config protobuf-compiler libprotobuf-dev libmosquitto-dev
RUN apt-get update -y && apt-get install -y pkg-config \
protobuf-compiler libprotobuf-dev \
libmosquitto-dev \
libavcodec-dev libavdevice-dev libavfilter-dev \
libavformat-dev libavresample-dev libavutil-dev libchromaprint-dev

# cd into the user directory, download and unzip the github actions runner
RUN cd /home/docker && mkdir actions-runner && cd actions-runner \

0 comments on commit b3669d0

Please sign in to comment.