mirror of
https://github.com/romanz/electrs.git
synced 2024-11-19 01:43:29 +01:00
9 lines
140 B
Docker
9 lines
140 B
Docker
FROM rust:latest
|
|
|
|
RUN apt-get update
|
|
RUN apt-get install -y clang cmake
|
|
|
|
RUN cargo install electrs
|
|
|
|
CMD ["electrs", "-vvvv", "--timestamp"]
|