From 5af19374b64571b7ebeb1f13a01600ad61246d7f Mon Sep 17 00:00:00 2001 From: Mike Brady <4265913+mikebrady@users.noreply.github.com> Date: Mon, 27 Jan 2025 14:56:21 +0000 Subject: [PATCH] Update Dockerfile Stop using mbedtls --- docker/classic/Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docker/classic/Dockerfile b/docker/classic/Dockerfile index ef26d5d9..069db509 100644 --- a/docker/classic/Dockerfile +++ b/docker/classic/Dockerfile @@ -18,7 +18,7 @@ RUN apk -U add \ libconfig-dev \ libsndfile-dev \ libtool \ - mbedtls-dev \ + openssl-dev \ mosquitto-dev \ popt-dev \ pulseaudio-dev \ @@ -40,7 +40,7 @@ COPY . . RUN git checkout "$SHAIRPORT_SYNC_BRANCH" WORKDIR /shairport-sync/build RUN autoreconf -i ../ -RUN CFLAGS="-O3" CXXFLAGS="-O3" ../configure --sysconfdir=/etc --with-alsa --with-pa --with-soxr --with-avahi --with-ssl=mbedtls \ +RUN CFLAGS="-O3" CXXFLAGS="-O3" ../configure --sysconfdir=/etc --with-alsa --with-pa --with-soxr --with-avahi --with-ssl=openssl \ --with-metadata --with-dummy --with-pipe --with-dbus-interface \ --with-stdout --with-mpris-interface --with-mqtt-client \ --with-apple-alac --with-convolution @@ -68,7 +68,7 @@ RUN apk -U add \ libpulse \ man-pages \ mandoc \ - mbedtls \ + libcrypto3 \ mosquitto \ popt \ soxr -- 2.47.2