Created
September 8, 2015 02:29
-
-
Save remore/ab8f7e0e8aa1f85f9b77 to your computer and use it in GitHub Desktop.
A Dockerfile for antiboredom/audiogrep
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
FROM cellofellow/ffmpeg | |
RUN apt-get update | |
RUN apt-get install -y software-properties-common pocketsphinx-utils pocketsphinx-hmm-wsj1 pocketsphinx-lm-wsj git python python-pip | |
# Installing audiogrep | |
RUN git clone https://github.com/kevinhughes27/audiogrep.git | |
RUN cd audiogrep && pip install -r requirements.txt | |
RUN chmod +x audiogrep/audiogrep.py | |
RUN cp audiogrep/audiogrep.py /usr/bin/audiogrep |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment