Skip to content

Instantly share code, notes, and snippets.

@wolkenarchitekt
Created March 4, 2018 13:23
Show Gist options
  • Save wolkenarchitekt/16e3427dc9e36499c62283199438eb0e to your computer and use it in GitHub Desktop.
Save wolkenarchitekt/16e3427dc9e36499c62283199438eb0e to your computer and use it in GitHub Desktop.
Dockerfile for wav2png
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