Browse Source

Merge pull request #6 from linuxserver/alpine_3.6

bump to alpine 3.6
pull/7/head 52
saarg 3 years ago
committed by GitHub
parent
commit
0e91e3adee
2 changed files with 12 additions and 10 deletions
  1. +11
    -10
      Dockerfile
  2. +1
    -0
      README.md

+ 11
- 10
Dockerfile 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 && \

+ 1
- 0
README.md 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.

Loading…
Cancel
Save