set HDMI EDID before starting ustreamer (#179)

* build docker image

* Push each image to an user github registry.
It can be used during development for testing.

* set HDMI EDID before starting ustreamer

* Update README.md
This commit is contained in:
tomaszduda23
2022-10-18 19:11:29 +02:00
committed by GitHub
parent 17f54a7977
commit 36c9ff22b3
5 changed files with 26 additions and 10 deletions

View File

@@ -18,13 +18,17 @@ RUN apk add --no-cache \
libjpeg-turbo \
libevent \
libgpiod \
libbsd
libbsd \
v4l-utils
WORKDIR /ustreamer
COPY --from=build /build/ustreamer/src/ustreamer.bin ustreamer
RUN wget https://raw.githubusercontent.com/pikvm/kvmd/master/configs/kvmd/tc358743-edid.hex -O /edid.hex
COPY pkg/docker/entry.sh /
EXPOSE 8080
ENTRYPOINT ["./ustreamer", "--host=0.0.0.0"]
ENTRYPOINT ["/entry.sh"]
CMD ["--dv-timings", "--format", "UYVY"]
# vim: syntax=dockerfile