Implement web broker provider and a sample provider in Rust

This commit is contained in:
Rajasekharan Vengalil
2017-12-22 17:10:14 -08:00
parent e050fea889
commit a4e99c2133
18 changed files with 1679 additions and 10 deletions

View File

@@ -0,0 +1,9 @@
FROM debian:stretch-slim
WORKDIR /app
ADD ./rust-web-provider /app/rust-web-provider
ENV RUST_LOG=info
EXPOSE 3000
ENTRYPOINT [ "/app/rust-web-provider" ]