Dockerfile 409 B

12345678910111213141516171819
  1. FROM gcc:latest
  2. RUN apt-get update && apt-get install -y build-essential
  3. RUN apt-get install -y libfftw3-dev
  4. RUN apt-get install -y libsndfile1-dev
  5. RUN apt-get install -y automake
  6. RUN apt-get install -y autoconf
  7. RUN apt-get install -y libtool
  8. RUN apt-get install -y autoconf-archive
  9. ADD . /audiowmark
  10. WORKDIR /audiowmark
  11. RUN ./autogen.sh
  12. RUN make
  13. RUN make install
  14. ENTRYPOINT ["/usr/local/bin/audiowmark"]