This repository has been archived on 2024-12-04. You can view files and clone it, but cannot push or open issues or pull requests.
2022-04-19 10:56:42 +02:00
|
|
|
FROM archlinux
|
|
|
|
|
|
|
|
|
|
|
|
# 1. INSTALL DEPENDENCIES
|
|
|
|
RUN pacman -Syu --noconfirm \
|
|
|
|
git \
|
|
|
|
cmake \
|
|
|
|
ninja \
|
|
|
|
gcc \
|
|
|
|
llvm \
|
|
|
|
clang \
|
|
|
|
gdb \
|
2022-04-20 09:55:54 +02:00
|
|
|
lldb \
|
2022-04-19 10:56:42 +02:00
|
|
|
fish \
|
|
|
|
zsh
|
|
|
|
|
|
|
|
|