stream-api/Dockerfile

11 lines
297 B
Docker
Raw Normal View History

2021-04-30 08:49:10 +00:00
FROM alpine:edge as base
2021-04-30 09:09:49 +00:00
RUN ["apk", "add", "--no-cache", "--repository", "https://dl-cdn.alpinelinux.org/alpine/edge/testing", "streamlink", "py3-tornado"]
2021-04-30 08:49:10 +00:00
RUN ["mkdir", "/app"]
COPY ["stream.py", "/app/stream.py"]
FROM scratch
COPY --from=base / /
USER 1444:1444
ENTRYPOINT ["/app/stream.py"]