This commit is contained in:
root
2018-09-27 12:21:07 +00:00
parent 90ae291395
commit a8391df583
7 changed files with 110 additions and 1 deletions

View File

@@ -0,0 +1,20 @@
FROM ocaml/opam:ubuntu
MAINTAINER Daniel
USER root
RUN apt-get -q update && \
apt-get install -qq -yy python festival sox && \
apt-get clean
RUN curl -L https://yt-dl.org/downloads/latest/youtube-dl -o /usr/local/bin/youtube-dl && \
chmod a+rx /usr/local/bin/youtube-dl
USER opam
RUN opam switch 4.05.0 && \
opam depext cry faad ffmpeg flac gstreamer lame liquidsoap mad opus samplerate ssl taglib vorbis && \
opam install cry faad ffmpeg flac gstreamer lame liquidsoap mad opus samplerate ssl taglib vorbis
CMD ["liquidsoap", "-h"]