Browse Source
Merge pull request #87 from stakwork/dockerfile-lnd-11
Updates for dockerfile
loopout2
Gonzalo Aune
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
3 additions and
5 deletions
-
Dockerfile
-
docker/create_wallet.sh
|
|
@ -8,7 +8,7 @@ ENV GODEBUG netdns=cgo |
|
|
|
# Pass a tag, branch or a commit using build-arg. This allows a docker |
|
|
|
# image to be built from a specified Git state. The default image |
|
|
|
# will use the Git tip of master by default. |
|
|
|
ARG checkout="v0.10.0-beta" |
|
|
|
ARG checkout="v0.11.1-beta" |
|
|
|
# ARG checkout="master" |
|
|
|
|
|
|
|
# Install dependencies and build the binaries. |
|
|
|
|
|
@ -19,8 +19,7 @@ match_max 100000 |
|
|
|
expect -exact "Input wallet password: " |
|
|
|
send -- "$WALLET_PASSWORD\r" |
|
|
|
expect -exact "\r |
|
|
|
Confirm password:\r |
|
|
|
" |
|
|
|
Confirm password: " |
|
|
|
send -- "$WALLET_PASSWORD\r" |
|
|
|
expect -exact "\r |
|
|
|
\r |
|
|
@ -32,7 +31,6 @@ Your cipher seed can optionally be encrypted.\r |
|
|
|
Input your passphrase if you wish to encrypt it (or press enter to proceed without a cipher seed passphrase): " |
|
|
|
send -- "$WALLET_PASSPHRASE\r" |
|
|
|
expect -exact "\r |
|
|
|
Confirm password:\r |
|
|
|
" |
|
|
|
Confirm password: " |
|
|
|
send -- "$WALLET_PASSPHRASE\r" |
|
|
|
expect eof |
|
|
|