loopp-docker-buildenv/Dockerfile

9 lines
562 B
Docker

FROM python:3.7-stretch
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 clang-format
RUN pip3 install meson lizard gcovr
RUN git clone https://github.com/original-male/ntk
RUN cd ntk && ./waf configure build install && cd ..
RUN wget -c -nv "https://github.com/probonopd/linuxdeployqt/releases/download/continuous/linuxdeployqt-continuous-x86_64.AppImage"
RUN chmod a+x linuxdeployqt-continuous-x86_64.AppImage