blob: 384ae6c086afab1d0f5df3996ff0c002160b2abd (
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
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 \
cmake \
ninja \
python-setuptools \
python-setuptools-git \
python-setuptools-scm \
python-cmake-build-extension \
swig
# Build the package
# RUN makepkg -si
|