1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 15:07:45 +00:00

Build: Add Dockerfile

This commit is contained in:
Yonatan Goldschmidt 2020-05-21 23:04:07 +03:00 committed by Andreas Kling
parent 27913154ea
commit 00c0650f96
4 changed files with 17 additions and 6 deletions

12
Toolchain/Dockerfile Normal file
View file

@ -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