2022-02-03 15:26:53 +00:00
|
|
|
FROM quay.io/centos/centos:stream8
|
2020-04-01 11:35:10 +00:00
|
|
|
|
|
|
|
RUN true \
|
2022-02-03 15:26:53 +00:00
|
|
|
&& dnf -y install git make python3-pip \
|
2020-04-01 11:35:10 +00:00
|
|
|
&& pip3 install jenkins-job-builder \
|
2022-02-03 15:26:53 +00:00
|
|
|
&& dnf -y clean all \
|
2020-04-01 11:35:10 +00:00
|
|
|
&& true
|
|
|
|
|
|
|
|
ENV MAKE_TARGET=${MAKE_TARGET:-test}
|
|
|
|
|
|
|
|
# Environment that needs to be set before executing checkout-repo.sh
|
|
|
|
# ENV GIT_REPO=https://github.com/ceph/ceph-csi
|
|
|
|
# ENV GIT_REF=ci/centos
|
|
|
|
ADD checkout-repo.sh /opt/build/
|
|
|
|
|
|
|
|
# make WORKDIR writable, otherwise git checkout fails
|
|
|
|
RUN chmod ugo=rwx /opt/build
|
|
|
|
|
|
|
|
ENV HOME=/opt/build
|
|
|
|
WORKDIR /opt/build
|
|
|
|
|
|
|
|
CMD ["sh", "-c", "./checkout-repo.sh && make -C deploy ${MAKE_TARGET}"]
|