Skip to content

Commit 6d4d53c

Browse files
authored
Merge pull request #350 from carlaKC/docker-make
dockerfile: use make rather than go install
2 parents c5ee984 + 2b206e4 commit 6d4d53c

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ ENV GO111MODULE on
1414
RUN apk add --no-cache --update alpine-sdk \
1515
git \
1616
make \
17-
&& cd /go/src/github.com/lightningnetwork/loop/cmd \
18-
&& go install ./...
17+
&& cd /go/src/github.com/lightningnetwork/loop \
18+
&& make install
1919

2020
# Start a new, final image to reduce size.
2121
FROM alpine as final

release_notes.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,3 +28,5 @@ This file tracks release notes for the loop client.
2828
#### Breaking Changes
2929

3030
#### Bug Fixes
31+
* The loop dockerfile has been updated to use the `make` command so that the
32+
latest commit hash of the code being run will be included in `loopd`.

0 commit comments

Comments
 (0)