Skip to content

Commit

Permalink
fix: electrs
Browse files Browse the repository at this point in the history
  • Loading branch information
vafanassieff committed Jan 10, 2024
1 parent 315d328 commit 7a75e86
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ Images are compiled and verified from the application github repository.
| [Storm Store Daemon](https://github.com/STORM-WG/storm-stored) | <img alt="Docker Image Version (tag latest semver)" src="https://img.shields.io/docker/v/lnmarkets/storm-stored/latest"> | <img alt="Docker Image Version (latest semver)" src="https://img.shields.io/docker/v/lnmarkets/storm-stored"> |
| [nostr-rs-relay](https://github.com/scsibug/nostr-rs-relay) | <img alt="Docker Image Version (tag latest semver)" src="https://img.shields.io/docker/v/lnmarkets/nostr-rs-relay/latest"> | None |
| [nostream](https://github.com/Cameri/nostream) | <img alt="Docker Image Version (tag latest semver)" src="https://img.shields.io/docker/v/lnmarkets/nostream/latest"> | None |
| [electrs](https://github.com/romanz/electrs) | <img alt="Docker Image Version (tag latest semver)" src="https://img.shields.io/docker/v/lnmarkets/electrs/latest"> | None |

### CLI Tools

Expand Down
4 changes: 2 additions & 2 deletions docker/electrs/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ RUN apt update -qqy && \
RUN git clone https://github.com/romanz/electrs.git && \
cd electrs && \
git checkout $VERSION && \
cargo build --release
cargo install --locked --path .

FROM lnmarkets/debian:bookworm

COPY --from=build /app/electrs/target/release/electrs /usr/bin/electrs
COPY --from=build /usr/local/cargo/bin/electrs /usr/bin/electrs

RUN apt update -qqy && \
apt install -qqy librocksdb-dev
Expand Down

0 comments on commit 7a75e86

Please sign in to comment.