This commit is contained in:
pablo 2023-02-18 23:02:14 +01:00
parent 65da55d636
commit ca4a2c095a
2 changed files with 4 additions and 3 deletions

18
electrs-docker/Dockerfile Normal file
View file

@ -0,0 +1,18 @@
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 git checkout v0.9.10
RUN ls -la
RUN cargo build --locked --release
CMD target/release/electrs