Skip to content

Commit

Permalink
feat: include genesis files in docker image (#107)
Browse files Browse the repository at this point in the history
  • Loading branch information
scarmuega authored Oct 15, 2023
1 parent d398433 commit ebb7d79
Show file tree
Hide file tree
Showing 5 changed files with 14,787 additions and 3 deletions.
4 changes: 3 additions & 1 deletion .github/Dockerfile → .github/image/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,10 @@ FROM debian:12-slim

RUN apt-get update && apt-get install -y ca-certificates && rm -rf /var/lib/apt/lists/*

COPY genesis /etc/genesis

ARG TARGETARCH
COPY binaries/Linux-GNU-${TARGETARCH}-dolos /bin/dolos
COPY bin/Linux-GNU-${TARGETARCH}-dolos /bin/dolos
RUN chmod +x /bin/dolos
RUN ln -s /bin/dolos /dolos

Expand Down
Loading

0 comments on commit ebb7d79

Please sign in to comment.