2019-12-18 18:29:21 +01:00
|
|
|
# escape=`
|
|
|
|
|
|
|
|
# use windows server core image
|
2020-02-20 16:18:26 +01:00
|
|
|
ARG agent_windows_version
|
2020-04-21 11:46:41 +02:00
|
|
|
FROM gcr.io/llvm-premerge-checks/agent-windows-vs2019:${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
|
|
|
|
|
|
|
# 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
|
2020-04-24 11:54:29 +02:00
|
|
|
CMD ["C:\\jenkins\\start_agent.ps1"]
|