blob: ddc22222441c2921c48b4738bab626b8a10cfe97 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
FROM brianrobt/archlinux-aur-dev:latest
# Copy local AUR package files to the container
COPY --chown=builder:builder .SRCINFO PKGBUILD alist.* config.json ./
# Update the system
USER root
RUN pacman -Syu --noconfirm
# Install build dependencies
USER builder
RUN yay -S --noconfirm \
glibc \
go
# Build the package
RUN updpkgsums
RUN makepkg -sif --noconfirm
RUN makepkg --printsrcinfo > .SRCINFO
|