-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
22cf7e0
commit 127cc9e
Showing
1 changed file
with
7 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,19 @@ | ||
FROM alpine:3.14 | ||
|
||
WORKDIR / | ||
|
||
RUN apk --no-cache add ffmpeg tzdata bash \ | ||
&& apk --no-cache add --virtual=builddeps autoconf automake libtool git ffmpeg-dev wget tar build-base \ | ||
&& wget http://prdownloads.sourceforge.net/argtable/argtable2-13.tar.gz \ | ||
&& tar xzf argtable2-13.tar.gz \ | ||
&& cd argtable2-13/ && ./configure && make && make install \ | ||
&& git clone git://github.com/erikkaashoek/Comskip.git /tmp/comskip \ | ||
&& mkdir -p /config && touch /config/comskip.ini \ | ||
&& cd /tmp/comskip && ./autogen.sh && ./configure && make && make install \ | ||
&& git clone https://github.com/BrettSheleski/comchap.git /tmp/comchap \ | ||
&& cd /tmp/comchap && make && make install \ | ||
&& mkdir -p /config && touch /config/comskip.ini \ | ||
&& apk del builddeps \ | ||
&& cd ~ \ | ||
&& rm -rf /var/cache/apk/* /tmp/* /tmp/.[!.]* | ||
|
||
COPY /comchap /usr/local/bin/comchap | ||
COPY /comcut /usr/local/bin/comcut | ||
|