Last active
June 17, 2019 15:09
-
-
Save trjh/6fe395b79ca637a8447e25072227b32c to your computer and use it in GitHub Desktop.
Dockerfile to build rteplayer_dl -- https://github.com/philroche/rteplayer_dl
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # | |
| # 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