forked from dadge/addon-shairport-sync
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Dockerfile
executable file
·82 lines (76 loc) · 1.67 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
82
ARG BUILD_FROM=hassioaddons/base:latest
FROM ${BUILD_FROM}
ENV LANG C.UTF-8
# Set shell
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
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 \
&& git checkout development \
&& 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 \
alsa-plugins-pulse \
libdaemon \
popt \
libressl \
soxr \
avahi \
libconfig \
&& rm -rf \
/etc/ssl \
/var/cache/apk/* \
/lib/apk/db/* \
/root/shairport-sync
# Copy root filesystem
COPY rootfs /
# Build arguments
ARG BUILD_ARCH
ARG BUILD_DATE
ARG BUILD_REF
ARG BUILD_VERSION
# Labels
LABEL \
io.hass.name="Shairport Sync" \
io.hass.description="Shairport Sync for Hass.io" \
io.hass.arch="${BUILD_ARCH}" \
io.hass.type="addon" \
io.hass.version=${BUILD_VERSION} \
maintainer="Dadge"