Add simple Dockerfile

This commit is contained in:
Roman Zeyde 2018-08-19 19:26:57 +03:00
parent 836bc5861e
commit 227b6ed74b
No known key found for this signature in database
GPG key ID: 87CAE5FA46917CBB

8
Dockerfile Normal file
View file

@ -0,0 +1,8 @@
FROM rust:latest
RUN apt-get update
RUN apt-get install -y clang cmake
RUN cargo install electrs
CMD ["electrs", "-vvvv", "--timestamp"]