This repository has been archived on 2020-05-08. You can view files and clone it, but cannot push or open issues/pull-requests.
audible-getkey/Dockerfile

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