1
0

Merge pull request #6 from linuxserver/alpine_3.6

bump to alpine 3.6
This commit is contained in:
saarg
2017-05-28 21:57:29 +02:00
committed by GitHub
2 changed files with 12 additions and 10 deletions

View File

@ -1,4 +1,4 @@
FROM lsiobase/alpine:3.5 FROM lsiobase/alpine:3.6
MAINTAINER saarg MAINTAINER saarg
# set version label # set version label
@ -6,16 +6,8 @@ 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
RUN \
apk add --no-cache \
libcrypto1.0 \
libssl1.0 \
libusb \
pcsc-lite \
pcsc-lite-libs && \
# install build packages # install build packages
RUN \
apk add --no-cache --virtual=build-dependencies \ apk add --no-cache --virtual=build-dependencies \
curl \ curl \
gcc \ gcc \
@ -28,6 +20,15 @@ RUN \
subversion \ subversion \
tar && \ tar && \
# install runtime packages
apk add --no-cache \
libcrypto1.0 \
libssl1.0 \
libusb \
pcsc-lite \
pcsc-lite-libs && \
# compile oscam from source # compile oscam from source
svn checkout http://www.streamboard.tv/svn/oscam/trunk /tmp/oscam-svn && \ svn checkout http://www.streamboard.tv/svn/oscam/trunk /tmp/oscam-svn && \
cd /tmp/oscam-svn && \ cd /tmp/oscam-svn && \

View File

@ -100,6 +100,7 @@ The web interface is at port 8888.
## Versions ## Versions
+ **28.05.2017:** Rebase to alpine 3.6.
+ **09.02.2017:** Rebase to alpine 3.5. + **09.02.2017:** Rebase to alpine 3.5.
+ **14.10.2016:** Add version layer information. + **14.10.2016:** Add version layer information.
+ **02.10.2016:** Add info on passing through devices to README. + **02.10.2016:** Add info on passing through devices to README.