mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-11 01:06:01 +03:00
03569f9686
Both utilies are used in the .port_include.sh file.
27 lines
436 B
Docker
27 lines
436 B
Docker
FROM ubuntu:21.04
|
|
|
|
ENV DEBIAN_FRONTEND=noninteractive
|
|
|
|
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 \
|
|
rsync \
|
|
sudo \
|
|
tzdata \
|
|
unzip \
|
|
wget
|
|
|
|
WORKDIR /serenity
|
|
|
|
RUN /bin/bash
|