Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .ci/docker-ci/arch/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,13 @@ RUN pacman -Syu --needed --noconfirm \
make \
procps

WORKDIR /build

COPY PKGBUILD .

# Build the package
RUN makepkg --noconfirm

# Clean up unnecessary files and packages to reduce the image size
RUN rm -rf /var/cache/pacman/pkg/* && \
pacman -Rns --noconfirm $(pacman -Qdtq)