Implement fully automated Jenkins HW8 setup with Ansible, JCasC and JJB
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
FROM python:3.12-slim
|
||||
|
||||
WORKDIR /opt/jobs_uploader
|
||||
|
||||
RUN apt-get update \
|
||||
&& apt-get install -y --no-install-recommends curl \
|
||||
&& rm -rf /var/lib/apt/lists/* \
|
||||
&& pip install --no-cache-dir jinja2 "setuptools<81" "jenkins-job-builder>=6.4.3"
|
||||
|
||||
COPY entrypoint.sh /opt/jobs_uploader/entrypoint.sh
|
||||
|
||||
RUN chmod +x /opt/jobs_uploader/entrypoint.sh
|
||||
|
||||
ENTRYPOINT ["/opt/jobs_uploader/entrypoint.sh"]
|
||||
Reference in New Issue
Block a user