From 7b6954afe32297b472e1ebea85978a00040c65a8 Mon Sep 17 00:00:00 2001 From: Jelle Raaijmakers Date: Thu, 22 Apr 2021 11:41:24 +0200 Subject: [PATCH] Toolchain/Dockerfile: Update to Ubuntu 21.04, add git --- Toolchain/Dockerfile | 24 ++++++++++++++++++------ 1 file changed, 18 insertions(+), 6 deletions(-) diff --git a/Toolchain/Dockerfile b/Toolchain/Dockerfile index 7f661f0873..f1a8395be7 100644 --- a/Toolchain/Dockerfile +++ b/Toolchain/Dockerfile @@ -1,12 +1,24 @@ -FROM ubuntu:20.10 +FROM ubuntu:21.04 -RUN DEBIAN_FRONTEND="noninteractive" apt-get update -y && apt-get install -y tzdata +ENV DEBIAN_FRONTEND=noninteractive -RUN apt-get install -y build-essential cmake curl libmpfr-dev libmpc-dev libgmp-dev e2fsprogs qemu-utils wget genext2fs sudo ninja-build - -RUN mkdir /serenity +RUN apt-get update -y \ + && apt-get install -y \ + build-essential \ + cmake \ + curl \ + genext2fs \ + git \ + libmpfr-dev \ + libmpc-dev \ + libgmp-dev \ + e2fsprogs \ + ninja-build \ + qemu-utils \ + sudo \ + tzdata \ + wget WORKDIR /serenity RUN /bin/bash -