Dockerfile 480 B

1234567891011121314151617181920212223
  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. RUN apt-get install -y libgcrypt20-dev
  10. ADD . /audiowmark
  11. WORKDIR /audiowmark
  12. RUN ./autogen.sh
  13. RUN make
  14. RUN make install
  15. VOLUME ["/data"]
  16. WORKDIR /data
  17. ENTRYPOINT ["/usr/local/bin/audiowmark"]