bump to alpine 3.6

This commit is contained in:
sparklyballs 2017-05-25 20:42:16 +01:00
parent 649aea3ceb
commit 851df23676
2 changed files with 19 additions and 18 deletions

View file

@ -1,4 +1,4 @@
FROM lsiobase/alpine:3.5 FROM lsiobase/alpine:3.6
MAINTAINER sparklyballs MAINTAINER sparklyballs
# set version label # set version label
@ -6,8 +6,21 @@ ARG BUILD_DATE
ARG VERSION ARG VERSION
LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}" LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}"
# install runtime packages # install build packages
RUN \ RUN \
apk add --no-cache --virtual=build-dependencies \
cmake \
ffmpeg-dev \
g++ \
gcc \
git \
jpeg-dev \
libpng-dev \
make \
openjpeg-dev \
python2-dev && \
# install runtime packages
apk add --no-cache \ apk add --no-cache \
curl \ curl \
expat \ expat \
@ -22,27 +35,13 @@ RUN \
libpng \ libpng \
nano \ nano \
openjpeg \ openjpeg \
py2-gobject3 \
py2-pip \ py2-pip \
py2-unidecode \
py-gobject3 \
python2 \ python2 \
sqlite-libs \ sqlite-libs \
tar \ tar \
wget && \ wget && \
# install build packages
apk add --no-cache --virtual=build-dependencies \
cmake \
ffmpeg-dev \
g++ \
gcc \
git \
jpeg-dev \
libpng-dev \
make \
openjpeg-dev \
python2-dev && \
# compile mp3gain # compile mp3gain
mkdir -p \ mkdir -p \
/tmp/mp3gain-src && \ /tmp/mp3gain-src && \
@ -74,7 +73,8 @@ RUN \
pillow \ pillow \
pip \ pip \
pyacoustid \ pyacoustid \
pylast && \ pylast \
unidecode && \
# cleanup # cleanup
apk del --purge \ apk del --purge \

View file

@ -85,6 +85,7 @@ Contains [beets-copyartifacts](https://github.com/sbarakat/beets-copyartifacts)
## Versions ## Versions
+ **25.05.17:** Rebase to alpine linux 3.6.
+ **06.02.17:** Rebase to alpine linux 3.5. + **06.02.17:** Rebase to alpine linux 3.5.
+ **16.01.17:** Add packages required for replaygain. + **16.01.17:** Add packages required for replaygain.
+ **24.12.16:** Add [beets-copyartifacts](https://github.com/sbarakat/beets-copyartifacts) plugin. + **24.12.16:** Add [beets-copyartifacts](https://github.com/sbarakat/beets-copyartifacts) plugin.