diff --git a/Dockerfile b/Dockerfile index 643a500..851304a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM lsiobase/alpine:3.5 +FROM lsiobase/alpine:3.6 MAINTAINER saarg # set version label @@ -6,16 +6,8 @@ ARG BUILD_DATE ARG VERSION 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 +RUN \ apk add --no-cache --virtual=build-dependencies \ curl \ gcc \ @@ -28,6 +20,15 @@ RUN \ subversion \ tar && \ +# install runtime packages + apk add --no-cache \ + libcrypto1.0 \ + libssl1.0 \ + libusb \ + pcsc-lite \ + pcsc-lite-libs && \ + + # compile oscam from source svn checkout http://www.streamboard.tv/svn/oscam/trunk /tmp/oscam-svn && \ cd /tmp/oscam-svn && \ diff --git a/README.md b/README.md index 0279c48..7472112 100644 --- a/README.md +++ b/README.md @@ -100,6 +100,7 @@ The web interface is at port 8888. ## Versions ++ **28.05.2017:** Rebase to alpine 3.6. + **09.02.2017:** Rebase to alpine 3.5. + **14.10.2016:** Add version layer information. + **02.10.2016:** Add info on passing through devices to README.