nimbus-eth2/docker/shared_testnet/Dockerfile

15 lines
315 B
Docker
Raw Normal View History

2020-06-26 02:44:24 +00:00
FROM debian:bullseye-slim
SHELL ["/bin/bash", "-c"]
RUN apt-get -qq update \
&& apt-get -qq -y install build-essential libpcre3-dev git &>/dev/null \
&& apt-get -qq clean \
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
STOPSIGNAL SIGINT
2020-06-26 21:41:19 +00:00
COPY "entry_point.sh" "/root/"
ENTRYPOINT ["/root/entry_point.sh"]
2020-06-26 02:44:24 +00:00