Skip to content

Instantly share code, notes, and snippets.

@iameli
Created July 11, 2016 18:41
Show Gist options
  • Select an option

  • Save iameli/7e58dd972302ad88b406ad9c4a9bcbbf to your computer and use it in GitHub Desktop.

Select an option

Save iameli/7e58dd972302ad88b406ad9c4a9bcbbf to your computer and use it in GitHub Desktop.
Dockerfile I was using to compile Quiet
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