From 8493e4944a030408c8524c96ae9ced6494c79860 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Carlos=20Comba=20da=20Costa?= Date: Thu, 20 May 2021 14:52:39 +0100 Subject: [PATCH] Update 01 - Jenkinsfile - Install Software --- .../01 - Jenkinsfile - Install Software | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/003 - Defining Execution Environments/01 - Jenkinsfile - Install Software b/003 - Defining Execution Environments/01 - Jenkinsfile - Install Software index 45b1e769..5afdf71e 100644 --- a/003 - Defining Execution Environments/01 - Jenkinsfile - Install Software +++ b/003 - Defining Execution Environments/01 - Jenkinsfile - Install Software @@ -8,8 +8,9 @@ pipeline { stage('build') { steps { sh "echo 'You need to install curl'" + sh "apk get curl" sh "curl www.google.com" } } } -} \ No newline at end of file +}