mirror of
https://github.com/linuxserver/docker-beets
synced 2025-12-06 08:23:31 +01:00
bump to alpine 3.6
This commit is contained in:
parent
649aea3ceb
commit
851df23676
2 changed files with 19 additions and 18 deletions
36
Dockerfile
36
Dockerfile
|
|
@ -1,4 +1,4 @@
|
|||
FROM lsiobase/alpine:3.5
|
||||
FROM lsiobase/alpine:3.6
|
||||
MAINTAINER sparklyballs
|
||||
|
||||
# set version label
|
||||
|
|
@ -6,8 +6,21 @@ ARG BUILD_DATE
|
|||
ARG VERSION
|
||||
LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}"
|
||||
|
||||
# install runtime packages
|
||||
# install build packages
|
||||
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 \
|
||||
curl \
|
||||
expat \
|
||||
|
|
@ -22,27 +35,13 @@ RUN \
|
|||
libpng \
|
||||
nano \
|
||||
openjpeg \
|
||||
py2-gobject3 \
|
||||
py2-pip \
|
||||
py2-unidecode \
|
||||
py-gobject3 \
|
||||
python2 \
|
||||
sqlite-libs \
|
||||
tar \
|
||||
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
|
||||
mkdir -p \
|
||||
/tmp/mp3gain-src && \
|
||||
|
|
@ -74,7 +73,8 @@ RUN \
|
|||
pillow \
|
||||
pip \
|
||||
pyacoustid \
|
||||
pylast && \
|
||||
pylast \
|
||||
unidecode && \
|
||||
|
||||
# cleanup
|
||||
apk del --purge \
|
||||
|
|
|
|||
|
|
@ -85,6 +85,7 @@ Contains [beets-copyartifacts](https://github.com/sbarakat/beets-copyartifacts)
|
|||
|
||||
## Versions
|
||||
|
||||
+ **25.05.17:** Rebase to alpine linux 3.6.
|
||||
+ **06.02.17:** Rebase to alpine linux 3.5.
|
||||
+ **16.01.17:** Add packages required for replaygain.
|
||||
+ **24.12.16:** Add [beets-copyartifacts](https://github.com/sbarakat/beets-copyartifacts) plugin.
|
||||
|
|
|
|||
Loading…
Reference in a new issue