1
0

Dockerfile 399 B

12345678910111213141516
  1. FROM ubuntu:14.04
  2. RUN apt-get update && apt-get install -y \
  3. git \
  4. python-dev \
  5. python-pip
  6. RUN pip install pytest
  7. RUN git clone https://github.com/jackaudio/jack2
  8. RUN cd jack2 && ./waf configure && ./waf build && ./waf install
  9. # add search path to find libjackserver.so.0
  10. RUN echo '/usr/local/lib' >>/etc/ld.so.conf && ldconfig
  11. RUN echo 'jackd -d dummy &' >>$HOME/.bash_history