-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDockerfile
64 lines (57 loc) · 1.12 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
FROM alpine:edge
MAINTAINER git@xantios.nl
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
RUN cd /root && git clone "https://github.com/mikebrady/shairport-sync.git"
RUN cd /root/shairport-sync && autoreconf -i -f \
&& ./configure \
--with-alsa \
--with-pipe \
--with-avahi \
--with-ssl=openssl \
--with-soxr \
--with-metadata \
&& make \
&& make install
RUN 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 bootstrap.sh /start
ENV AIRPLAY_NAME Docker
ENTRYPOINT [ "/start" ]