static-video-server 0.1.2

A simple static video file server.
Documentation
1
2
3
4
5
6
FROM rust:1.65
WORKDIR /app
COPY . .
RUN cargo install --path .
ENTRYPOINT ["static-video-server"]
CMD ["--assets-root", "/assets", "--port", "9092", "--host", "0.0.0.0"]