counterweight_v2/Dockerfile-electrs
2023-02-18 22:58:26 +01:00

18 lines
No EOL
278 B
Text

FROM debian:bullseye
RUN apt update
RUN apt install -y \
clang \
cmake \
build-essential \
git \
cargo
RUN git clone https://github.com/romanz/electrs
RUN git checkout v0.9.10
WORKDIR electrs
RUN ls -la
RUN cargo build --locked --release
CMD target/release/electrs