Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add ARM64 Arch #16

Draft
wants to merge 3 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ ARG UPSTREAM_VERSION
FROM statusim/nimbus-eth2:multiarch-${UPSTREAM_VERSION}

USER root
RUN apt update && apt install curl jq -y
RUN apt update && apt install apt-utils -y && apt install libc-bin curl jq -y

COPY entrypoint.sh /usr/bin/entrypoint.sh
COPY auth-token /home/user/nimbus-eth2/build/data/auth-token
Expand Down
2 changes: 1 addition & 1 deletion dappnode_package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"upstreamVersion": "v23.8.0",
"upstreamRepo": "status-im/nimbus-eth2",
"upstreamArg": "UPSTREAM_VERSION",
"architectures": ["linux/amd64"],
"architectures": ["linux/amd64", "linux/arm64"],
"shortDescription": "Nimbus ETH2.0 Beacon chain + validator",
"description": "Nimbus is a client implementation that strives to be as lightweight as possible in terms of resources used. This allows it to perform well on embedded systems, resource-restricted devices -- including Raspberry Pis and mobile devices -- and multi-purpose servers.",
"type": "service",
Expand Down
Loading