Simon Bruder
77da53f68b
All checks were successful
continuous-integration/drone/push Build is passing
18 lines
496 B
Docker
18 lines
496 B
Docker
# Samples: https://github.com/inAudible-NG/audible-samples
|
|
|
|
FROM alpine as download
|
|
|
|
RUN apk add --no-cache git \
|
|
&& git clone --depth=1 https://github.com/inAudible-NG/tables
|
|
|
|
RUN cd /opt/ \
|
|
&& wget -O- https://johnvansickle.com/ffmpeg/builds/ffmpeg-git-amd64-static.tar.xz | tar -Jxvf-
|
|
|
|
FROM debian:testing
|
|
|
|
COPY --from=download /tables /opt/rainbowcrack
|
|
COPY --from=download /opt/ffmpeg-*/ffprobe /usr/local/bin/ffprobe
|
|
COPY entrypoint.sh /usr/local/bin/
|
|
|
|
ENTRYPOINT ["entrypoint.sh"]
|