Created
July 11, 2016 18:41
-
-
Save iameli/7e58dd972302ad88b406ad9c4a9bcbbf to your computer and use it in GitHub Desktop.
Dockerfile I was using to compile Quiet
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FROM ubuntu:xenial | |
| RUN apt-get update | |
| RUN apt-get -y install build-essential cmake git libsndfile1-dev autoconf libjansson-dev portaudio19-dev libsndfile1-dev | |
| ENV LD_LIBRARY_PATH $LD_LIBRARY_PATH:/usr/local/lib | |
| RUN git clone https://github.com/quiet/libfec.git && cd libfec && ./configure && make && make install | |
| RUN git clone https://github.com/quiet/liquid-dsp.git -b devel --single-branch && cd liquid-dsp && ./bootstrap.sh && ./configure && make && make install | |
| ADD . /quiet | |
| WORKDIR /quiet | |
| RUN ./bootstrap && cd build && make install | |
| CMD ./boot.sh |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment