mirror of
https://github.com/MichaByte/OnBoard-Live.git
synced 2026-01-29 13:32:12 -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"]
|