-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Setting up a test network closes issue #12 BREAKING CHANGE: makeup Build/Dockerize Commands closes issue #1 closes issue #15 closes issue #33
- Loading branch information
1 parent
8c4fba8
commit aef1585
Showing
6 changed files
with
27 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,18 @@ | ||
FROM alpine:3.7 | ||
MAINTAINER Greg Szabo <greg@tendermint.com> | ||
MAINTAINER LinkChain <dl_linkchain_v2_dev@linecorp.com> | ||
|
||
RUN apk update && \ | ||
apk upgrade && \ | ||
apk --no-cache add curl jq file | ||
apk add --update --no-cache autoconf bash jq file curl git lsof wget iputils vim busybox-extras | ||
|
||
VOLUME [ /linkd ] | ||
ENV LINKCLIHOME /linkd | ||
ENV PATH="$PATH:$LINKCLIHOME" | ||
|
||
STOPSIGNAL SIGTERM | ||
COPY wrapper.sh /usr/bin/wrapper.sh | ||
WORKDIR /linkd | ||
|
||
EXPOSE 26656 26657 | ||
ENTRYPOINT ["/usr/bin/wrapper.sh"] | ||
CMD ["start"] | ||
STOPSIGNAL SIGTERM | ||
|
||
COPY wrapper.sh /usr/bin/wrapper.sh | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters