We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5922879 commit 5946a6cCopy full SHA for 5946a6c
local_builds/codebuild_build.sh
@@ -182,7 +182,12 @@ else
182
docker_command+=" -e \"INITIATOR=$USER\""
183
fi
184
185
-docker_command+=" amazon/aws-codebuild-local:latest"
+if [ -n $local_agent_image ]
186
+then
187
+ docker_command+=" $local_agent_image"
188
+else
189
+ docker_command+=" amazon/aws-codebuild-local:latest"
190
+fi
191
192
# Note we do not expose the AWS_SECRET_ACCESS_KEY or the AWS_SESSION_TOKEN
193
exposed_command=$docker_command
0 commit comments