Apply suggestions from code review

Co-Authored-By: darwin <antonin@hildebrand.cz>
pull/1/head
Edouard 5 years ago committed by GitHub
parent ea394c75c7
commit 1b64be4aca

@ -56,7 +56,7 @@ export LND_HOME=~/.lnd
# build the container # build the container
./build.sh ./build.sh
# run lntop from the contaner # run lntop from the container
./lntop.sh ./lntop.sh
``` ```
@ -69,4 +69,4 @@ To start from scratch:
```sh ```sh
./clean.sh ./clean.sh
./build.sh --no-cache ./build.sh --no-cache
``` ```

@ -19,7 +19,7 @@ WORKDIR $GOPATH/src/github.com/edouardparis/lntop
COPY "$LNTOP_SRC_PATH" . COPY "$LNTOP_SRC_PATH" .
ENV GO111MODULE=on ENV GO111MODULE=on
RUN go install ./... RUN go install -mod=vendor ./...
# --------------------------------------------------------------------------------------------------------------------------- # ---------------------------------------------------------------------------------------------------------------------------
@ -42,4 +42,4 @@ WORKDIR /root
COPY "home" . COPY "home" .
RUN mkdir ".lntop" RUN mkdir ".lntop"
COPY "$LNTOP_CONF_PATH" ".lntop/" COPY "$LNTOP_CONF_PATH" ".lntop/"

Loading…
Cancel
Save