Dockerfile for Image with dependencies installed

main
Georg Krause 2019-05-21 12:04:01 +02:00
commit 929e807839
1 changed files with 6 additions and 0 deletions

6
Dockerfile Normal file
View File

@ -0,0 +1,6 @@
FROM python:3.7
RUN apt-get update && apt-get --assume-yes install ninja-build libjpeg-dev libsndfile1-dev \
libsigc++-2.0-dev libfontconfig1-dev libxft-dev libcairo-dev liblo-dev libjack-dev libsamplerate0-dev
RUN pip3 install meson
RUN git clone https://github.com/original-male/ntk
RUN cd ntk && ./waf configure build install && cd ..