summaryrefslogtreecommitdiff
path: root/Toolchain/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'Toolchain/Dockerfile')
-rw-r--r--Toolchain/Dockerfile12
1 files changed, 12 insertions, 0 deletions
diff --git a/Toolchain/Dockerfile b/Toolchain/Dockerfile
new file mode 100644
index 0000000000..d5bb1296a6
--- /dev/null
+++ b/Toolchain/Dockerfile
@@ -0,0 +1,12 @@
+FROM ubuntu:20.04
+
+RUN DEBIAN_FRONTEND="noninteractive" apt-get update -y && apt-get install -y tzdata
+
+RUN apt-get install -y build-essential cmake curl libmpfr-dev libmpc-dev libgmp-dev e2fsprogs qemu-utils wget genext2fs sudo
+
+RUN mkdir /serenity
+
+WORKDIR /serenity
+
+RUN /bin/bash
+