Skip to content

Commit

Permalink
feat: update docker images for debug
Browse files Browse the repository at this point in the history
  • Loading branch information
shreyasbhat0 committed Jan 22, 2025
1 parent 5c69c08 commit 3be2d78
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 13 deletions.
10 changes: 5 additions & 5 deletions docker/Dockerfile
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" ]
7 changes: 5 additions & 2 deletions docker/Dockerfile.api
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" ]
4 changes: 2 additions & 2 deletions docker/Dockerfile.dev
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ EXPOSE 26656

EXPOSE 26657

ENTRYPOINT [ "/usr/bin/arkeod" ]
ENTRYPOINT [ "/bin/sh" ]

CMD [ "help" ]
CMD [ "/usr/bin/arkeod" ,"help"]
7 changes: 5 additions & 2 deletions docker/Dockerfile.indexer
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" ]
8 changes: 6 additions & 2 deletions docker/Dockerfile.sentinel
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" ]

0 comments on commit 3be2d78

Please sign in to comment.