From 127cc9edc7653f510bda79d3030a2b51aa7adfcf Mon Sep 17 00:00:00 2001 From: Brett Sheleski Date: Tue, 23 Nov 2021 22:02:10 -0600 Subject: [PATCH] updated Dockerfile --- Dockerfile | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index a83bda4..203e0d5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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 +