Created
March 4, 2018 13:23
-
-
Save wolkenarchitekt/16e3427dc9e36499c62283199438eb0e to your computer and use it in GitHub Desktop.
Dockerfile for wav2png
This file contains 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:latest | |
RUN apt-get update --fix-missing | |
RUN apt-get install -y git make g++ libsndfile1-dev libpng++-dev libpng12-dev libboost-program-options-dev | |
RUN apt-get install -y libxvidcore4 gstreamer1.0-plugins-base gstreamer1.0-plugins-good gstreamer1.0-plugins-ugly gstreamer1.0-plugins-bad gstreamer1.0-alsa gstreamer1.0-fluendo-mp3 gstreamer1.0-libav | |
RUN git clone https://github.com/beschulz/wav2png | |
WORKDIR /wav2png/build | |
RUN make all | |
RUN ln -s /wav2png/bin/Linux/wav2png /usr/bin/wav2png |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment