1
0
Fork 0
llvm-premerge-checks/containers/agent-windows-jenkins/Dockerfile

29 lines
994 B
Docker
Raw Normal View History

2019-12-18 18:29:21 +01:00
# escape=`
# use windows server core image
ARG agent_windows_version
FROM gcr.io/llvm-premerge-checks/agent-windows:$agent_windows_version
2019-12-18 18:29:21 +01:00
# install java
RUN choco install -y openjdk
# get Jenkins swarm plugin
ENV SWARM_PLUGIN_URL="https://repo.jenkins-ci.org/releases/org/jenkins-ci/plugins/swarm-client/3.17/swarm-client-3.17.jar"
ENV SWARM_PLUGIN_JAR="C:\jenkins\swarm-client.jar"
RUN powershell -NoProfile -InputFormat None -Command `
mkdir c:\jenkins ; `
Invoke-WebRequest -Uri %SWARM_PLUGIN_URL% -OutFile %SWARM_PLUGIN_JAR%
# install gsutils to access Google Cloud Storage
2019-12-20 12:07:09 +01:00
RUN pip install gsutil
2019-12-18 18:29:21 +01:00
VOLUME C:\credentials
2019-12-20 12:07:09 +01:00
2020-01-16 15:19:47 +01:00
# install python dependencies for the scripts
2020-01-28 16:36:59 +01:00
RUN pip install -r https://raw.githubusercontent.com/google/llvm-premerge-checks/master/scripts/requirements.txt
2020-01-16 15:19:47 +01:00
2019-12-20 12:07:09 +01:00
# temporary directory, can be mounted on host if required
2019-12-18 18:29:21 +01:00
VOLUME C:\Temp
# start swarm plugin
2019-12-20 12:07:09 +01:00
COPY start_agent.ps1 c:\jenkins
CMD powershell c:\jenkins\start_agent.ps1