From 3e036c8af52eb483e673fd9b99746412991bdb83 Mon Sep 17 00:00:00 2001 From: napnap75 Date: Sat, 28 Jan 2023 15:20:12 +0100 Subject: [PATCH] Downgrading to Alpine 3.16 to correct build errors --- shairport-sync/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/shairport-sync/Dockerfile b/shairport-sync/Dockerfile index 742b3f3..694ca72 100644 --- a/shairport-sync/Dockerfile +++ b/shairport-sync/Dockerfile @@ -1,4 +1,4 @@ -FROM alpine:latest AS builder +FROM alpine:3.16 AS builder RUN apk update \ && apk add git build-base autoconf automake libtool alsa-lib-dev libdaemon-dev popt-dev libressl-dev soxr-dev avahi-dev libconfig-dev curl asio-dev flac-dev libvorbis-dev mosquitto-dev \ @@ -14,7 +14,7 @@ RUN apk update \ RUN cd /root/shairport-sync \ && make install -FROM alpine:latest +FROM alpine:3.16 RUN apk add --no-cache avahi-libs dbus libdaemon popt libressl soxr avahi libconfig mosquitto-libs su-exec \ && addgroup shairport-sync \