summarylogtreecommitdiffstats
path: root/Dockerfile
blob: 415b29d6c36c1c6e3b3283a3a7d45757fece57e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
FROM greyltc/archlinux-aur:yay

# Install base dependencies
RUN pacman --noconfirm -Sy fakeroot binutils make

# Install OpenGamepadUI dependencies
RUN pacman --noconfirm -S \
  rust \
  gamescope \
  vulkan-tools \
  mesa-utils \
  godot \
  unzip \
  wget \
  git

RUN aur-install inputplumber-bin

RUN mkdir /home/build && chmod 777 /home/build