Initial commit

This commit is contained in:
pablo 2023-02-18 19:19:14 +01:00
commit 7a4c879eb9
4 changed files with 146 additions and 0 deletions

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 ls -la
RUN cargo build --locked --release
CMD target/release/electrs