28 lines
851 B
Docker
28 lines
851 B
Docker
# Copyright (c) 2022-2024 Status Research & Development GmbH. Licensed under
|
|
# either of:
|
|
# - Apache License, version 2.0
|
|
# - MIT license
|
|
# at your option. This file may not be copied, modified, or distributed except
|
|
# according to those terms.
|
|
|
|
FROM --platform=linux/arm64/v8 debian:bookworm-slim
|
|
|
|
SHELL ["/bin/bash", "-c"]
|
|
|
|
# We need the host's registered binfmt_misc "interpreter" inside the container,
|
|
# for that transparent virtualisation to work.
|
|
COPY "qemu-aarch64-static" "/usr/bin/"
|
|
|
|
# Likely to match the first regular user:group created on the host.
|
|
RUN addgroup --gid 1000 user; \
|
|
adduser --disabled-password --gecos '' --uid 1000 --gid 1000 user;
|
|
|
|
USER user
|
|
|
|
STOPSIGNAL SIGINT
|
|
|
|
COPY "nimbus-eth2/build/nimbus_validator_client" "/home/user/nimbus_validator_client"
|
|
WORKDIR "/home/user/"
|
|
ENTRYPOINT ["/home/user/nimbus_validator_client"]
|
|
|