counterweight_v2/my-electrs-repo/Dockerfile
2023-02-18 19:25:36 +01:00

17 lines
No EOL
253 B
Docker

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