forked from sig_core/toolkit
Neil Hanlon
4587287e1e
* Add in really simple job template creation to prove the generation will work
78 lines
2.1 KiB
Docker
78 lines
2.1 KiB
Docker
FROM golang:1.18 as skbn
|
|
|
|
ADD images/get_arch /get_arch
|
|
RUN git clone https://github.com/rubroboletus/skbn.git /usr/src/app/skbn.git
|
|
|
|
WORKDIR /usr/src/app/skbn.git
|
|
RUN CGO_ENABLED=0 GOOS=linux GOARCH=$(/get_arch) go build \
|
|
-ldflags "-X main.GitTag=$(git describe --tags --always) -X main.GitCommit=$(git rev-parse --short HEAD)" \
|
|
-o skbn cmd/skbn.go
|
|
|
|
FROM quay.io/centos/centos:stream9
|
|
|
|
COPY --from=skbn /usr/src/app/skbn.git/skbn /usr/local/bin/skbn
|
|
COPY --from=skbn /get_arch /get_arch
|
|
|
|
ENV TINI_VERSION v0.19.0
|
|
RUN curl -o /tini -L "https://github.com/krallin/tini/releases/download/${TINI_VERSION}/tini-$(/get_arch)"
|
|
RUN chmod +x /tini
|
|
|
|
RUN rm -rf /etc/yum.repos.d/*.repo
|
|
ADD images/epelkey.gpg /etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-9
|
|
ADD images/rhel.repo /etc/yum.repos.d/rhel.repo
|
|
|
|
RUN dnf update -y && dnf install -y \
|
|
bash \
|
|
bzip2 \
|
|
cpio \
|
|
diffutils \
|
|
findutils \
|
|
gawk \
|
|
gcc \
|
|
gcc-c++ \
|
|
git \
|
|
grep \
|
|
gzip \
|
|
info \
|
|
make \
|
|
patch \
|
|
python3 \
|
|
redhat-rpm-config \
|
|
rpm-build \
|
|
scl-utils-build \
|
|
sed \
|
|
shadow-utils \
|
|
tar \
|
|
unzip \
|
|
util-linux \
|
|
which \
|
|
xz \
|
|
dnf-plugins-core \
|
|
createrepo_c \
|
|
rpm-sign \
|
|
sudo \
|
|
mock \
|
|
python-pip \
|
|
genisoimage \
|
|
isomd5sum \
|
|
lorax \
|
|
lorax-templates-rhel \
|
|
lorax-templates-generic
|
|
|
|
RUN sed -i '/libreport-rhel-anaconda-bugzilla/ s/^/#/' /usr/share/lorax/templates.d/80-rhel/runtime-install.tmpl
|
|
|
|
RUN ssh-keygen -t rsa -q -f "$HOME/.ssh/id_rsa" -N ""
|
|
RUN dnf clean all
|
|
RUN rm -rf /etc/yum.repos.d/*.repo
|
|
RUN useradd -o -d /var/peridot -u 1002 peridotbuilder && usermod -a -G mock peridotbuilder
|
|
RUN chown peridotbuilder:mock /etc/yum.conf && chown -R peridotbuilder:mock /etc/dnf && chown -R peridotbuilder:mock /etc/rpm && chown -R peridotbuilder:mock /etc/yum.repos.d
|
|
|
|
RUN pip install 'git+https://git.rockylinux.org/release-engineering/public/toolkit.git@feature/iso-kube#egg=empanadas&subdirectory=iso/empanadas'
|
|
|
|
RUN echo "nameserver 1.1.1.1 > /etc/resolv.conf"
|
|
|
|
ENV USER=1002
|
|
USER 1002
|
|
|
|
ENTRYPOINT ["/tini", "--"]
|