7 lines
166 B
Docker
7 lines
166 B
Docker
FROM alpine
|
|
LABEL maintainer="PayPal"
|
|
LABEL description="Katbox Stream"
|
|
|
|
RUN apk add util-linux
|
|
COPY ./bin/katbox-stream /katbox-stream
|
|
ENTRYPOINT ["/katbox-stream"]
|