diff options
author | Matthias Schiffer <mschiffer@universe-factory.net> | 2021-10-31 11:40:38 +0100 |
---|---|---|
committer | Matthias Schiffer <mschiffer@universe-factory.net> | 2021-10-31 11:40:38 +0100 |
commit | d1a31a458756989b506a2895123934ee74751b52 (patch) | |
tree | 41a7e5d4c90301622cdff60a754e86134fcdde8a | |
parent | d67e88f3f38b45cfbd2d2e6156db615e4b29c8dc (diff) | |
download | bootstrap-d1a31a458756989b506a2895123934ee74751b52.tar bootstrap-d1a31a458756989b506a2895123934ee74751b52.zip |
Run dist-upgrade before install
-rw-r--r-- | Containerfile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Containerfile b/Containerfile index 4859bbd..210d16a 100644 --- a/Containerfile +++ b/Containerfile @@ -2,6 +2,7 @@ FROM debian:11.0 RUN \ apt-get update && \ + DEBIAN_FRONTEND=noninteractive apt-get -y dist-upgrade && \ DEBIAN_FRONTEND=noninteractive apt-get -y install \ make gcc g++ xz-utils lzip \ libmpc-dev libmpfr-dev libgmp-dev zlib1g-dev \ |