mirror of
https://github.com/status-im/nimbus-eth2.git
synced 2025-01-17 18:11:21 +00:00
ab8f8ccaba
* clean up dependencies * use non-prce-mode for metrics * clean up obsolete snappy and gflags deps from manuals * conditional pcre
18 lines
599 B
Docker
18 lines
599 B
Docker
# This Docker image can change from one build to another, because the upstream
|
|
# Debian/Ubuntu package index is continuously updated and we have to run
|
|
# `apt-get update` in here.
|
|
#
|
|
# The only way to make this a part of our reproducible build system is to build
|
|
# it once, upload it to Docker Hub and make sure it's being pulled regularly so
|
|
# it's not deleted after 6 months of inactivity.
|
|
|
|
FROM ubuntu:20.04
|
|
|
|
SHELL ["/bin/bash", "-c"]
|
|
|
|
RUN apt-get -qq update \
|
|
&& apt-get -qq -y install build-essential git &>/dev/null \
|
|
&& apt-get -qq clean \
|
|
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
|
|
|