forked from Ivasoft/docker-tvheadend
All checks were successful
continuous-integration/drone/push Build is passing
This reverts commit 4e9319e83a.
211 lines
4.9 KiB
Docker
211 lines
4.9 KiB
Docker
# syntax=docker/dockerfile:1
|
|
|
|
############## picons stage ##############
|
|
# built by https://github.com/linuxserver/picons-builder
|
|
FROM ghcr.io/linuxserver/picons-builder as piconsstage
|
|
|
|
|
|
FROM ghcr.io/linuxserver/baseimage-alpine:3.18 as buildstage
|
|
############## build stage ##############
|
|
|
|
# package versions
|
|
ARG ARGTABLE_VER="2.13"
|
|
|
|
# environment settings
|
|
ARG TZ="Etc/UTC"
|
|
ARG TVHEADEND_COMMIT
|
|
ENV HOME="/config"
|
|
|
|
# copy patches and picons
|
|
COPY patches/ /tmp/patches/
|
|
COPY --from=piconsstage /picons.tar.bz2 /picons.tar.bz2
|
|
|
|
RUN \
|
|
echo "**** install build packages ****" && \
|
|
apk add --no-cache \
|
|
autoconf \
|
|
automake \
|
|
bsd-compat-headers \
|
|
build-base \
|
|
cmake \
|
|
ffmpeg4-dev \
|
|
file \
|
|
findutils \
|
|
gettext-dev \
|
|
git \
|
|
gnu-libiconv-dev \
|
|
libdvbcsa-dev \
|
|
libgcrypt-dev \
|
|
libhdhomerun-dev \
|
|
libtool \
|
|
libva-dev \
|
|
libvpx-dev \
|
|
libxml2-dev \
|
|
libxslt-dev \
|
|
linux-headers \
|
|
openssl-dev \
|
|
opus-dev \
|
|
patch \
|
|
pcre2-dev \
|
|
pkgconf \
|
|
pngquant \
|
|
python3 \
|
|
sdl2-dev \
|
|
uriparser-dev \
|
|
x264-dev \
|
|
x265-dev \
|
|
zlib-dev
|
|
|
|
RUN \
|
|
echo "**** remove musl iconv.h and replace with gnu-iconv.h ****" && \
|
|
rm -rf /usr/include/iconv.h && \
|
|
cp /usr/include/gnu-libiconv/iconv.h /usr/include/iconv.h
|
|
|
|
RUN \
|
|
echo "**** compile tvheadend ****" && \
|
|
if [ -z ${TVHEADEND_COMMIT+x} ]; then \
|
|
TVHEADEND_COMMIT=$(curl -sX GET https://api.github.com/repos/tvheadend/tvheadend/commits/master \
|
|
| jq -r '. | .sha'); \
|
|
fi && \
|
|
mkdir -p \
|
|
/tmp/tvheadend && \
|
|
git clone https://github.com/tvheadend/tvheadend.git /tmp/tvheadend && \
|
|
cd /tmp/tvheadend && \
|
|
git checkout ${TVHEADEND_COMMIT} && \
|
|
./configure \
|
|
`#Encoding` \
|
|
--disable-ffmpeg_static \
|
|
--disable-libfdkaac_static \
|
|
--disable-libtheora_static \
|
|
--disable-libopus_static \
|
|
--disable-libvorbis_static \
|
|
--disable-libvpx_static \
|
|
--disable-libx264_static \
|
|
--disable-libx265_static \
|
|
--disable-libfdkaac \
|
|
--enable-libopus \
|
|
--enable-libvorbis \
|
|
--enable-libvpx \
|
|
--enable-libx264 \
|
|
--enable-libx265 \
|
|
\
|
|
`#Options` \
|
|
--disable-avahi \
|
|
--disable-dbus_1 \
|
|
--disable-bintray_cache \
|
|
--disable-execinfo \
|
|
--disable-hdhomerun_static \
|
|
--enable-hdhomerun_client \
|
|
--enable-libav \
|
|
--enable-pngquant \
|
|
--enable-trace \
|
|
--enable-vaapi \
|
|
--infodir=/usr/share/info \
|
|
--localstatedir=/var \
|
|
--mandir=/usr/share/man \
|
|
--prefix=/usr \
|
|
--python=python3 \
|
|
--sysconfdir=/config && \
|
|
make -j 2 && \
|
|
make DESTDIR=/tmp/tvheadend-build install
|
|
|
|
RUN \
|
|
echo "**** compile argtable2 ****" && \
|
|
ARGTABLE_VER1="${ARGTABLE_VER//./-}" && \
|
|
mkdir -p \
|
|
/tmp/argtable && \
|
|
curl -s -o \
|
|
/tmp/argtable-src.tar.gz -L \
|
|
"https://sourceforge.net/projects/argtable/files/argtable/argtable-${ARGTABLE_VER}/argtable${ARGTABLE_VER1}.tar.gz" && \
|
|
tar xf \
|
|
/tmp/argtable-src.tar.gz -C \
|
|
/tmp/argtable --strip-components=1 && \
|
|
cp /tmp/patches/config.* /tmp/argtable && \
|
|
cd /tmp/argtable && \
|
|
./configure \
|
|
--prefix=/usr && \
|
|
make -j 2 && \
|
|
make check && \
|
|
make DESTDIR=/tmp/argtable-build install && \
|
|
echo "**** copy to /usr for comskip dependency ****" && \
|
|
cp -pr /tmp/argtable-build/usr/* /usr/
|
|
|
|
RUN \
|
|
echo "***** compile comskip ****" && \
|
|
git clone https://github.com/erikkaashoek/Comskip /tmp/comskip && \
|
|
cd /tmp/comskip && \
|
|
./autogen.sh && \
|
|
./configure \
|
|
--bindir=/usr/bin \
|
|
--sysconfdir=/config/comskip && \
|
|
make -j 2 && \
|
|
make DESTDIR=/tmp/comskip-build install
|
|
|
|
RUN \
|
|
echo "***** extract picons ****" && \
|
|
mkdir -p /picons && \
|
|
tar xf \
|
|
/picons.tar.bz2 -C \
|
|
/picons
|
|
|
|
############## runtime stage ##############
|
|
FROM ghcr.io/linuxserver/baseimage-alpine:3.18
|
|
|
|
# set version label
|
|
ARG BUILD_DATE
|
|
ARG VERSION
|
|
LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}"
|
|
LABEL maintainer="saarg"
|
|
|
|
# environment settings
|
|
ENV HOME="/config"
|
|
|
|
RUN \
|
|
echo "**** install runtime packages ****" && \
|
|
apk add --no-cache \
|
|
bsd-compat-headers \
|
|
ffmpeg \
|
|
ffmpeg4-libavcodec \
|
|
ffmpeg4-libavdevice \
|
|
ffmpeg4-libavfilter \
|
|
ffmpeg4-libavformat \
|
|
ffmpeg4-libavutil \
|
|
ffmpeg4-libpostproc \
|
|
ffmpeg4-libswresample \
|
|
ffmpeg4-libswscale \
|
|
gnu-libiconv \
|
|
libdvbcsa \
|
|
libhdhomerun-libs \
|
|
libva \
|
|
libva-intel-driver \
|
|
intel-media-driver \
|
|
mesa \
|
|
libvpx \
|
|
libxml2 \
|
|
libxslt \
|
|
linux-headers \
|
|
opus \
|
|
pcre2 \
|
|
perl \
|
|
perl-datetime-format-strptime \
|
|
perl-json \
|
|
perl-json-xs \
|
|
py3-requests \
|
|
python3 \
|
|
uriparser \
|
|
x264 \
|
|
x265 \
|
|
xmltv \
|
|
zlib
|
|
|
|
# copy local files and buildstage artifacts
|
|
COPY --from=buildstage /tmp/argtable-build/usr/ /usr/
|
|
COPY --from=buildstage /tmp/comskip-build/usr/ /usr/
|
|
COPY --from=buildstage /tmp/tvheadend-build/usr/ /usr/
|
|
COPY --from=buildstage /picons /picons
|
|
COPY root/ /
|
|
|
|
# ports and volumes
|
|
EXPOSE 9981 9982
|
|
VOLUME /config
|