From 3662ead82de47cfa38ca101a0b8c220fcbb07315 Mon Sep 17 00:00:00 2001 From: Leo Lobato Date: Tue, 27 Sep 2022 12:47:08 +0200 Subject: [PATCH] Add SSL support --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 870beec..b1bbaef 100644 --- a/Dockerfile +++ b/Dockerfile @@ -17,6 +17,7 @@ RUN apt update && apt upgrade -y && \ libsamplerate0-dev \ libtag1-dev \ libvorbis-dev \ + libssl-dev \ m4 \ make \ pkg-config \ @@ -31,7 +32,7 @@ RUN groupadd -g 999 radio && \ chown -R radio /etc/liquidsoap /music ARG LIQUIDSOAP_VERSION -ARG OPAM_PACKAGES="liquidsoap${LIQUIDSOAP_VERSION:+.$LIQUIDSOAP_VERSION} taglib mad lame vorbis cry samplerate" +ARG OPAM_PACKAGES="liquidsoap${LIQUIDSOAP_VERSION:+.$LIQUIDSOAP_VERSION} taglib mad lame vorbis cry samplerate ssl" USER radio