-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: update docker images for debug
- Loading branch information
1 parent
5c69c08
commit 3be2d78
Showing
5 changed files
with
23 additions
and
13 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
FROM scratch | ||
FROM alpine:latest | ||
|
||
COPY ./arkeod /usr/bin/arkeod | ||
|
||
WORKDIR /root/.arkeo | ||
|
||
EXPOSE 1317 | ||
RUN apk add --no-cache bash coreutils jq | ||
|
||
EXPOSE 1317 | ||
EXPOSE 26656 | ||
|
||
EXPOSE 26657 | ||
|
||
ENTRYPOINT [ "/usr/bin/arkeod" ] | ||
ENTRYPOINT [ "/bin/sh" ] | ||
|
||
CMD [ "help" ] | ||
CMD [ "/usr/bin/arkeod", "help" ] |
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,8 +1,11 @@ | ||
FROM scratch | ||
FROM alpine:latest | ||
|
||
COPY ./api /usr/bin/api | ||
|
||
WORKDIR /root/.arkeo | ||
|
||
RUN apk add --no-cache bash coreutils jq | ||
|
||
ENTRYPOINT [ "/usr/bin/api" ] | ||
ENTRYPOINT [ "/bin/sh" ] | ||
|
||
CMD [ "/usr/bin/api" ] |
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,8 +1,11 @@ | ||
FROM scratch | ||
FROM alpine:latest | ||
|
||
COPY ./indexer /usr/bin/indexer | ||
|
||
WORKDIR /root/.arkeo | ||
|
||
RUN apk add --no-cache bash coreutils jq | ||
|
||
ENTRYPOINT [ "/usr/bin/indexer" ] | ||
ENTRYPOINT [ "/bin/sh" ] | ||
|
||
CMD [ "/usr/bin/indexer","help" ] |
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,7 +1,11 @@ | ||
FROM scratch | ||
FROM alpine:latest | ||
|
||
COPY ./sentinel /usr/bin/sentinel | ||
|
||
WORKDIR /root/.arkeo | ||
|
||
ENTRYPOINT [ "/usr/bin/sentinel" ] | ||
RUN apk add --no-cache bash coreutils libc6-compat | ||
|
||
ENTRYPOINT [ "/bin/sh" ] | ||
|
||
CMD [ "/usr/bin/sentinel" ] |