mirror of
https://github.com/MichaByte/OnBoard-Live.git
synced 2025-12-06 03:23:40 -05:00
11 lines
200 B
Docker
11 lines
200 B
Docker
FROM alpine:3.20
|
|
|
|
RUN apk add --no-cache gstreamer gstreamer-tools gst-plugins-bad
|
|
|
|
RUN apk add --no-cache ffmpeg
|
|
|
|
RUN apk add --no-cache bash libwpe libwpe-dev
|
|
|
|
COPY run.sh /
|
|
|
|
ENTRYPOINT ["/run.sh"]
|