-
Notifications
You must be signed in to change notification settings - Fork 23
/
Dockerfile
66 lines (59 loc) · 1.21 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
FROM alpine:edge
MAINTAINER [email protected]
RUN apk -U add \
git \
build-base \
autoconf \
automake \
libtool \
alsa-lib-dev \
libdaemon-dev \
popt-dev \
libressl-dev \
soxr-dev \
avahi-dev \
libconfig-dev \
&& cd /root \
&& git clone https://github.com/mikebrady/shairport-sync.git \
&& cd shairport-sync \
&& autoreconf -i -f \
&& ./configure \
--with-alsa \
--with-pipe \
--with-avahi \
--with-ssl=openssl \
--with-soxr \
--with-metadata \
&& make \
&& make install \
&& cd / \
&& apk --purge del \
git \
build-base \
autoconf \
automake \
libtool \
alsa-lib-dev \
libdaemon-dev \
popt-dev \
libressl-dev \
soxr-dev \
avahi-dev \
libconfig-dev \
&& apk add \
dbus \
alsa-lib \
libdaemon \
popt \
libressl \
soxr \
avahi \
libconfig \
&& rm -rf \
/etc/ssl \
/var/cache/apk/* \
/lib/apk/db/* \
/root/shairport-sync
COPY start.sh /start
ENV AIRPLAY_NAME Docker
ENTRYPOINT [ "/start" ]