loopp-docker-buildenv/Dockerfile

9 lines
562 B
Docker
Raw Permalink Normal View History

2019-11-22 10:14:47 +01:00
FROM python:3.7-stretch
RUN apt-get update && apt-get --assume-yes install ninja-build libjpeg-dev libsndfile1-dev \
2019-11-21 11:25:36 +01:00
libsigc++-2.0-dev libfontconfig1-dev libxft-dev libcairo-dev liblo-dev libjack-dev libsamplerate0-dev clang-format
2019-05-23 17:17:53 +02:00
RUN pip3 install meson lizard gcovr
RUN git clone https://github.com/original-male/ntk
2019-05-21 12:23:22 +02:00
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"
2019-11-21 11:25:36 +01:00
RUN chmod a+x linuxdeployqt-continuous-x86_64.AppImage