Skip to content

Commit

Permalink
Dockerfile: must copy gexp from builder
Browse files Browse the repository at this point in the history
Dockerfile tries to copy `geth` but it should copy `gexp` instead
  • Loading branch information
mkrufky authored Apr 27, 2019
1 parent f368730 commit c92c071
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ RUN cd /go-expanse && make gexp
FROM alpine:latest

RUN apk add --no-cache ca-certificates
COPY --from=builder /go-expanse/build/bin/geth /usr/local/bin/
COPY --from=builder /go-expanse/build/bin/gexp /usr/local/bin/

EXPOSE 9656 9656 42786 42786/udp
ENTRYPOINT ["gexp"]

2 comments on commit c92c071

@laviole
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@laviole
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.