first commit

This commit is contained in:
2021-04-30 10:49:10 +02:00
commit f1e23b4a48
4 changed files with 57 additions and 0 deletions

10
Dockerfile Normal file
View File

@ -0,0 +1,10 @@
FROM alpine:edge as base
RUN ["apk", "add", "--no-cache", "streamlink"]
RUN ["mkdir", "/app"]
COPY ["stream.py", "/app/stream.py"]
FROM scratch
COPY --from=base / /
USER 1444:1444
ENTRYPOINT ["/app/stream.py"]