Merge pull request #12 from linuxserver/Alpine-3.5

Rebase to Alpine 3.5 & PHP7
This commit is contained in:
sparklyballs 2017-02-05 18:28:06 +00:00 committed by GitHub
commit fd237073ab
2 changed files with 10 additions and 8 deletions

View File

@ -1,4 +1,4 @@
FROM lsiobase/alpine.nginx
FROM lsiobase/alpine.nginx:3.5
MAINTAINER chbmb
# set version label
@ -12,13 +12,14 @@ ENV COPS_VER="1.0.1"
# install runtime packages
RUN \
apk add --no-cache \
php5-dom \
php5-gd \
php5-intl \
php5-opcache \
php5-openssl \
php5-pdo_sqlite \
php5-zlib
php7-dom \
php7-gd \
php7-intl \
php7-mbstring \
php7-opcache \
php7-openssl \
php7-pdo_sqlite \
php7-zlib
# install cops
RUN \

View File

@ -110,6 +110,7 @@ Unlike other implementations of COPS in a docker container, the linuxserver ver
## Versions
+ **05.02.17:** Updated to Alpine 3.5 & PHP7.
+ **24.10.16:** Updated to implement user based config.
+ **24.10.16:** Updated to version 1.0.1.
+ **14.10.16:** Add version layer information.