# 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"]