summarylogtreecommitdiffstats
path: root/Dockerfile
blob: b4f32c72174b85d9f0a2e093cc01a10f906ed6c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
FROM brianrobt/archlinux-aur-dev:latest

RUN sudo pacman -Syu --noconfirm

# Copy local AUR package files to the container
COPY --chown=builder:builder .SRCINFO PKGBUILD ./

# Install build dependencies
RUN yay -S --noconfirm \
  rust \
  cargo

# Build the package
# RUN makepkg -si