Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 15 additions & 22 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,38 +1,31 @@
FROM lsiobase/alpine.nginx:3.5
FROM lsiobase/alpine.nginx:3.6
MAINTAINER sparklyballs

# set version label
ARG BUILD_DATE
ARG VERSION
LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}"

# add repositories
RUN \
echo "@edge http://nl.alpinelinux.org/alpine/edge/main" >> /etc/apk/repositories && \
echo "@community http://nl.alpinelinux.org/alpine/edge/community" >> /etc/apk/repositories && \

# install packages
RUN \
apk add --no-cache \
curl \
imagemagick \
lynx \
php7-apcu \
php7-cgi \
php7-dom \
php7-exif \
php7-gd \
php7-imagick \
php7-mysqli \
php7-mysqlnd \
php7-pear \
php7-xmlrpc \
php7-xsl \
re2c \
unzip \
wget && \
apk add --no-cache \
imagemagick@edge \
libwebp@edge && \
apk add --no-cache \
php7-apcu@community \
php7-cgi@community \
php7-dom@community \
php7-exif@community \
php7-gd@community \
php7-imagick@community \
php7-mysqli@community \
php7-mysqlnd@community \
php7-pear@community \
php7-xmlrpc@community \
php7-xsl@community
wget

# copy local files
COPY root/ /
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@ The easiest way to edit the configuration file is to enable local files editor f

## Versions

+ **25.05.17:** Rebase to alpine linux 3.6.
+ **03.05.17:** Use repo pinning to better solve dependencies, use repo version of php7-imagick.
+ **20.04.17:** Add php7-exif package, thanks iiska
+ **23.02.17:** Rebase to alpine linux 3.5 and nginx.
Expand Down