Merge pull request #12 from linuxserver/alpine_3.6

bump to alpine 3.6
This commit is contained in:
j0nnymoe 2017-05-26 08:52:57 +01:00 committed by GitHub
commit 54fe3ebaca
2 changed files with 23 additions and 24 deletions

View File

@ -1,4 +1,4 @@
FROM lsiobase/alpine:3.5
FROM lsiobase/alpine:3.6
MAINTAINER sparklyballs
# set version label
@ -9,28 +9,8 @@ LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DA
# package version
ARG DAAPD_VER="24.2"
# install runtime packages
RUN \
apk add --no-cache \
avahi \
confuse \
dbus \
ffmpeg \
json-c \
libcurl \
libevent \
libgcrypt \
libplist \
libunistring \
protobuf-c \
sqlite \
sqlite-libs && \
apk add --no-cache \
--repository http://nl.alpinelinux.org/alpine/edge/testing \
libantlr3c \
mxml && \
# install build packages
RUN \
apk add --no-cache --virtual=build-dependencies \
alsa-lib-dev \
autoconf \
@ -68,6 +48,26 @@ RUN \
libantlr3c-dev \
mxml-dev && \
# install runtime packages
apk add --no-cache \
avahi \
confuse \
dbus \
ffmpeg \
json-c \
libcurl \
libevent \
libgcrypt \
libplist \
libunistring \
protobuf-c \
sqlite \
sqlite-libs && \
apk add --no-cache \
--repository http://nl.alpinelinux.org/alpine/edge/testing \
libantlr3c \
mxml && \
# make antlr wrapper
mkdir -p \
/tmp/source/forked-daapd && \
@ -117,5 +117,3 @@ COPY root/ /
# ports and volumes
VOLUME /config /music

View File

@ -77,6 +77,7 @@ For further setup options of remotes etc, check out the daapd website, [Forked-d
## Versions
+ **26.05.17:** Rebase to alpine linux 3.6.
+ **06.02.17:** Rebase to alpine linux 3.5.
+ **10.01.17:** Bump to 24.2.
+ **14.10.16:** Add version layer information.