nimbus-eth2/docker/Dockerfile

53 lines
1.7 KiB
Docker
Raw Normal View History

FROM debian:bullseye-slim AS build
2019-09-10 16:18:39 +00:00
SHELL ["/bin/bash", "-c"]
2019-09-10 16:18:39 +00:00
RUN apt-get -qq update \
2020-06-26 02:44:24 +00:00
&& apt-get -qq -y install build-essential libpcre3-dev git &>/dev/null \
2020-02-13 18:17:58 +00:00
&& apt-get -qq clean \
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
2019-09-10 16:18:39 +00:00
# let Docker cache this between Git revision and testnet version changes
RUN cd /root \
&& git clone https://github.com/status-im/nim-beacon-chain.git \
&& cd nim-beacon-chain \
2020-06-26 02:44:24 +00:00
&& make -j$(nproc) update
2019-09-10 16:18:39 +00:00
2020-03-22 23:34:20 +00:00
# Please note that the commands above have the goal of caching the
# compilation of Nim, but don't depend on the current git revision.
# This means that the cache can become outdated over time and you'll
# start seeing Nim being compiled on every run. If this happens, just
# prune your docker cache to get a fresh up-to-date version of Nim.
ARG GIT_REVISION
ARG NETWORK_NIM_FLAGS
ARG MARCH_NIM_FLAGS
2019-09-10 16:18:39 +00:00
RUN cd /root/nim-beacon-chain \
&& git fetch \
&& git reset --hard ${GIT_REVISION} \
2020-05-20 13:03:16 +00:00
&& make -j$(nproc) update \
&& make LOG_LEVEL=TRACE NIMFLAGS="-d:insecure -d:testnet_servers_image ${NETWORK_NIM_FLAGS} ${MARCH_NIM_FLAGS}" beacon_node
2019-09-10 16:18:39 +00:00
# --------------------------------- #
# Starting new image to reduce size #
# --------------------------------- #
2020-05-21 16:22:03 +00:00
FROM debian:bullseye-slim as deploy
SHELL ["/bin/bash", "-c"]
2019-09-10 16:18:39 +00:00
RUN apt-get -qq update \
&& apt-get -qq -y install libpcre3 psmisc &>/dev/null \
&& apt-get -qq clean \
2019-09-10 16:18:39 +00:00
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
2020-02-13 18:17:58 +00:00
# "COPY" creates new image layers, so we cram all we can into one command
COPY --from=build /root/nim-beacon-chain/build/beacon_node /usr/bin/
2019-09-10 16:18:39 +00:00
MAINTAINER Zahary Karadjov <zahary@status.im>
LABEL description="Nimbus installation that can act as an ETH2 network bootstrap node."
STOPSIGNAL SIGINT
ENTRYPOINT ["/usr/bin/beacon_node"]