counterweight_v2/my-electrs-repo/Dockerfile

19 lines
257 B
Text
Raw Normal View History

2023-02-18 19:19:14 +01:00
FROM debian:bullseye
RUN apt update
RUN apt install -y \
clang \
cmake \
build-essential \
git \
cargo
RUN git clone https://github.com/romanz/electrs
WORKDIR electrs
RUN ls -la
RUN cargo build --locked --release
CMD target/release/electrs