Julien CLEMENT
ef5a58c0cf
All checks were successful
continuous-integration/drone/push Build is passing
Signed-off-by: Julien CLEMENT <julien.clement@epita.fr>
18 lines
443 B
Docker
18 lines
443 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 \
|
|
&& pacman -Scc --noconfirm
|