mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-11 01:06:01 +03:00
76e99fa6c8
Missed this in the gcc 11 version update, but if anyone is using this then they'll need gcc 11 to build Lagom.
33 lines
732 B
Docker
33 lines
732 B
Docker
FROM ubuntu:21.10
|
|
|
|
ENV DEBIAN_FRONTEND=noninteractive
|
|
|
|
RUN apt-get update -y \
|
|
&& apt-get install -y \
|
|
build-essential \
|
|
ccache \
|
|
cmake \
|
|
curl \
|
|
g++-11 \
|
|
gcc-11 \
|
|
e2fsprogs \
|
|
genext2fs \
|
|
git \
|
|
imagemagick \
|
|
libgmp-dev \
|
|
libgtk-3-dev \
|
|
libmpc-dev \
|
|
libmpfr-dev \
|
|
libpixman-1-dev \
|
|
libsdl2-dev \
|
|
libspice-server-dev \
|
|
ninja-build \
|
|
qemu-utils \
|
|
rsync \
|
|
sudo \
|
|
texinfo \
|
|
tzdata \
|
|
unzip \
|
|
&& rm -rf /var/lib/apt/lists/ \
|
|
&& update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-11 900 --slave /usr/bin/g++ g++ /usr/bin/g++-11
|