22 lines
508 B
Docker
22 lines
508 B
Docker
FROM archlinux:base-devel
|
|
|
|
LABEL maintainer="Julien CLEMENT <julien.clement@epita.fr> [https://juju.re]"
|
|
|
|
RUN pacman -Syy
|
|
|
|
RUN pacman -Sy --noconfirm gcc clang \
|
|
base-devel meson cmake autoconf autoconf-archive libtool \
|
|
musl \
|
|
python3 python-pip \
|
|
gtest \
|
|
libev \
|
|
boost \
|
|
openssl \
|
|
llvm \
|
|
grub libisoburn arch-install-scripts mtools \
|
|
nasm \
|
|
rustup \
|
|
&& pacman -Scc --noconfirm
|
|
|
|
RUN rustup override add nightly
|