mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-02-21 14:24:09 +01:00
docker: Add bitcoin-cli to the alpine dockerfile
This commit is contained in:
parent
6fb653ef97
commit
62bfed9a8d
1 changed files with 5 additions and 1 deletions
|
@ -26,7 +26,6 @@ RUN apk update && \
|
|||
zlib-dev \
|
||||
zlib-static
|
||||
|
||||
RUN mkdir lightning
|
||||
COPY . /source
|
||||
|
||||
RUN git clone /source /repo --recursive && \
|
||||
|
@ -37,6 +36,11 @@ RUN git clone /source /repo --recursive && \
|
|||
|
||||
FROM alpine:3.16 as runner
|
||||
|
||||
RUN apk update && \
|
||||
apk add \
|
||||
postgresql \
|
||||
bitcoin-cli
|
||||
|
||||
COPY --from=builder /usr/bin/lightningd /usr/bin/
|
||||
COPY --from=builder /usr/bin/lightning-cli /usr/bin/
|
||||
COPY --from=builder /usr/bin/lightning-hsmtool /usr/bin/
|
||||
|
|
Loading…
Add table
Reference in a new issue