Skip to content

Instantly share code, notes, and snippets.

@trjh
Last active June 17, 2019 15:09
Show Gist options
  • Select an option

  • Save trjh/6fe395b79ca637a8447e25072227b32c to your computer and use it in GitHub Desktop.

Select an option

Save trjh/6fe395b79ca637a8447e25072227b32c to your computer and use it in GitHub Desktop.
Dockerfile to build rteplayer_dl -- https://github.com/philroche/rteplayer_dl
#
# Dockerfile for rteplayer_dl,
# based on vimagick/youtube-dl
#
FROM alpine
MAINTAINER Tim Hunter <[email protected]>
RUN set -xe \
&& apk add --no-cache ca-certificates \
ffmpeg \
openssl \
python3 \
libxml2 \
libxslt
RUN apk add --no-cache --virtual .build-deps \
gcc \
python3-dev \
musl-dev \
libxml2-dev \
libxslt-dev
RUN pip3 install --no-cache-dir rteplayer-dl
RUN apk del .build-deps
WORKDIR /data
ENTRYPOINT ["rteplayer_dl"]
CMD ["--help"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment