bot 1.0.13

A bot for the videocall project
1
2
3
4
5
6
FROM rust:1.53
WORKDIR /usr/src/bot
COPY . .
RUN cargo build --release
ENV N_CLIENTS=1 ENDPOINT=ws://example.com/lobby ROOM=default
CMD ["cargo", "run", "--release"]