This commit is contained in:
pablo 2023-02-18 22:58:26 +01:00
parent 54f65efd77
commit 65da55d636
2 changed files with 24 additions and 4 deletions

18
Dockerfile-electrs 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
RUN git checkout v0.9.10
WORKDIR electrs
RUN ls -la
RUN cargo build --locked --release
CMD target/release/electrs