serenity/Toolchain/Dockerfile
Jelle Raaijmakers 03569f9686 Toolchain/Dockerfile: Add rsync and unzip
Both utilies are used in the .port_include.sh file.
2021-04-27 08:58:29 +02:00

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