stuff
This commit is contained in:
parent
65da55d636
commit
ca4a2c095a
2 changed files with 4 additions and 3 deletions
18
electrs-docker/Dockerfile
Normal file
18
electrs-docker/Dockerfile
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue