diff options
| author | Loic Guegan <manzerbredes@mailbox.org> | 2022-02-23 18:11:55 +0100 |
|---|---|---|
| committer | Loic Guegan <manzerbredes@mailbox.org> | 2022-02-23 18:11:55 +0100 |
| commit | ce941c146aea7925bded6b9d2a0d0559d3156ad3 (patch) | |
| tree | 4c52e02600e3fd127bfb28b3e974d45541ec9e4e /tools/docker/archlinux | |
Create repository
Diffstat (limited to 'tools/docker/archlinux')
| -rw-r--r-- | tools/docker/archlinux | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tools/docker/archlinux b/tools/docker/archlinux new file mode 100644 index 0000000..7260da0 --- /dev/null +++ b/tools/docker/archlinux @@ -0,0 +1,10 @@ +FROM archlinux/base + +RUN pacman -Sy --noconfirm && pacman -S --noconfirm boost cmake base-devel git sudo +RUN useradd --system --create-home aur +RUN echo 'aur ALL=NOPASSWD: /usr/bin/pacman' > /etc/sudoers.d/aur +RUN cd /home/aur && runuser -u aur -- git clone https://aur.archlinux.org/yay.git && cd yay && runuser -u aur -- makepkg -si --noconfirm && cd - +RUN runuser -u aur -- yay -Sy --noconfirm wxgtk3-dev +RUN ln -sf /usr/bin/wx-config-gtk3 /usr/bin/wx-config + +ENTRYPOINT /usr/bin/bash
\ No newline at end of file |
