1
0
mirror of https://github.com/romanz/electrs.git synced 2024-11-19 01:43:29 +01:00

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"]