mediamtx/test-images/vlc/Dockerfile

12 lines
168 B
Docker
Raw Normal View History

2020-07-10 10:22:30 +00:00
FROM amd64/alpine:3.12
RUN apk add --no-cache \
vlc
RUN adduser -D -H -s /bin/sh -u 9337 user
COPY start.sh /
RUN chmod +x /start.sh
ENTRYPOINT [ "/start.sh" ]