forked from orbsmiv/docker-shairport-sync-rpi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
81 lines (65 loc) · 1.96 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
FROM arm32v6/alpine:latest AS builder
MAINTAINER PKizzle
ARG SHAIRPORT_VER=development
RUN apk --no-cache -U add \
git \
build-base \
autoconf \
automake \
libtool \
alsa-lib-dev \
libdaemon-dev \
popt-dev \
libressl-dev \
soxr-dev \
avahi-dev \
libconfig-dev
RUN mkdir /root/alac \
&& git clone https://github.com/mikebrady/alac.git \
/root/alac
WORKDIR /root/alac
RUN autoreconf -fi \
&& ./configure \
&& make \
&& make install
RUN mkdir /root/shairport-sync \
&& git clone --recursive --depth 1 --branch ${SHAIRPORT_VER} \
git://github.com/mikebrady/shairport-sync \
/root/shairport-sync
WORKDIR /root/shairport-sync
RUN autoreconf -i -f \
&& ./configure \
--with-alsa \
--with-avahi \
--with-ssl=openssl \
--with-soxr \
--with-apple-alac \
--sysconfdir=/etc \
&& make \
&& make install
FROM arm32v6/alpine:latest
RUN apk add --no-cache \
dbus \
alsa-lib \
libdaemon \
popt \
libressl \
soxr \
avahi \
libconfig \
libstdc++ \
&& rm -rf \
/etc/ssl \
/lib/apk/db/* \
/root/shairport-sync
COPY --from=builder /etc/shairport-sync* /etc/
COPY --from=builder /usr/local/bin/shairport-sync /usr/local/bin/shairport-sync
COPY --from=builder /usr/local/lib/libalac.so.0.0.0 /usr/local/lib/libalac.so.0.0.0
COPY --from=builder /usr/local/lib/libalac.la /usr/local/lib/libalac.la
COPY --from=builder /usr/local/lib/pkgconfig/alac.pc /usr/local/lib/pkgconfig/alac.pc
RUN ln -s -f /usr/local/lib/libalac.so.0.0.0 /usr/local/lib/libalac.so.0
RUN ln -s -f /usr/local/lib/libalac.so.0.0.0 /usr/local/lib/libalac.so
COPY /usr/share/alsa/alsa.conf /usr/share/alsa/alsa.conf
COPY start.sh /start
ENV AIRPLAY_NAME Docker
ENTRYPOINT [ "/start" ]