Skip to content

Instantly share code, notes, and snippets.

@remore
Created September 8, 2015 02:29
Show Gist options
  • Save remore/ab8f7e0e8aa1f85f9b77 to your computer and use it in GitHub Desktop.
Save remore/ab8f7e0e8aa1f85f9b77 to your computer and use it in GitHub Desktop.
A Dockerfile for antiboredom/audiogrep
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