18 lines
No EOL
278 B
Docker
18 lines
No EOL
278 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 git checkout v0.9.10
|
|
RUN ls -la
|
|
RUN cargo build --locked --release
|
|
|
|
CMD target/release/electrs |