From 66ae67568404ee82c36f58abcdbe3ab4118b6499 Mon Sep 17 00:00:00 2001 From: Balakrishnan Balasubramanian Date: Sun, 9 Feb 2025 15:08:42 -0500 Subject: [PATCH] working --- Containerfile | 8 +++++--- run.sh | 16 ++++++++++++++++ 2 files changed, 21 insertions(+), 3 deletions(-) create mode 100755 run.sh diff --git a/Containerfile b/Containerfile index e85a310..0f12bb1 100644 --- a/Containerfile +++ b/Containerfile @@ -3,17 +3,19 @@ FROM docker.io/archlinux:base-devel LABEL Description="Container to build archlinux packages" COPY packager.conf /etc/makepkg.conf.d/packager.conf -COPY mirrorlist /etc/pacman.d/mirrorlist COPY sudoers /etc/sudoers.d/builder +COPY run.sh /run.sh -RUN echo "169.254.1.2 archmirror.i.balki.me" >> /etc/hosts +# RUN echo "169.254.1.2 archmirror.i.balki.me" >> /etc/hosts RUN pacman -Sy --noconfirm git +COPY mirrorlist /etc/pacman.d/mirrorlist + RUN useradd builder -m WORKDIR /w USER builder -CMD sudo pacman -Syu && makepkg --printsrcinfo > .SRCINFO && makepkg -s +CMD /run.sh diff --git a/run.sh b/run.sh new file mode 100755 index 0000000..3c63723 --- /dev/null +++ b/run.sh @@ -0,0 +1,16 @@ +#!/bin/bash + +set -xeuo pipefail + +# sudo sed -i '$ a 169.254.1.2 archmirror.i.balki.me' /etc/hosts +sudo sh -c 'echo "169.254.1.2 archmirror.i.balki.me" >> /etc/hosts' + +sudo pacman -Syu + +sudo chown --recursive builder:builder /w + +makepkg --printsrcinfo > .SRCINFO + +makepkg -s + +