Merge pull request #350 from carlaKC/docker-make

dockerfile: use make rather than go install
pull/347/head
Carla Kirk-Cohen 3 years ago committed by GitHub
commit 6d4d53ca30
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -14,8 +14,8 @@ ENV GO111MODULE on
RUN apk add --no-cache --update alpine-sdk \
git \
make \
&& cd /go/src/github.com/lightningnetwork/loop/cmd \
&& go install ./...
&& cd /go/src/github.com/lightningnetwork/loop \
&& make install
# Start a new, final image to reduce size.
FROM alpine as final

@ -28,3 +28,5 @@ This file tracks release notes for the loop client.
#### Breaking Changes
#### Bug Fixes
* The loop dockerfile has been updated to use the `make` command so that the
latest commit hash of the code being run will be included in `loopd`.

Loading…
Cancel
Save