From 1b64be4acae8402cee767f7dd8e62f81f3df3d22 Mon Sep 17 00:00:00 2001 From: Edouard Date: Fri, 12 Apr 2019 17:29:53 +0200 Subject: [PATCH] Apply suggestions from code review Co-Authored-By: darwin --- README.md | 4 ++-- docker/lntop/Dockerfile | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 92931ea..f9d7f54 100644 --- a/README.md +++ b/README.md @@ -56,7 +56,7 @@ export LND_HOME=~/.lnd # build the container ./build.sh -# run lntop from the contaner +# run lntop from the container ./lntop.sh ``` @@ -69,4 +69,4 @@ To start from scratch: ```sh ./clean.sh ./build.sh --no-cache -``` \ No newline at end of file +``` diff --git a/docker/lntop/Dockerfile b/docker/lntop/Dockerfile index d433f21..ea814c2 100644 --- a/docker/lntop/Dockerfile +++ b/docker/lntop/Dockerfile @@ -19,7 +19,7 @@ WORKDIR $GOPATH/src/github.com/edouardparis/lntop COPY "$LNTOP_SRC_PATH" . ENV GO111MODULE=on -RUN go install ./... +RUN go install -mod=vendor ./... # --------------------------------------------------------------------------------------------------------------------------- @@ -42,4 +42,4 @@ WORKDIR /root COPY "home" . RUN mkdir ".lntop" -COPY "$LNTOP_CONF_PATH" ".lntop/" \ No newline at end of file +COPY "$LNTOP_CONF_PATH" ".lntop/"