From ba147f92c515d7c5438632295036659ec37839cf Mon Sep 17 00:00:00 2001 From: Imtiah01 Date: Fri, 17 Jan 2025 22:18:59 +0000 Subject: [PATCH] Update Jenkinsfile.stacks --- cdp_cdk_python/Jenkinsfile.stacks | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cdp_cdk_python/Jenkinsfile.stacks b/cdp_cdk_python/Jenkinsfile.stacks index 2e1ba20..121fa27 100644 --- a/cdp_cdk_python/Jenkinsfile.stacks +++ b/cdp_cdk_python/Jenkinsfile.stacks @@ -20,7 +20,7 @@ pipeline { stage('Activate env, install dependencies and synthesize') { steps { // Use Python3, activate venv, install Python dependencies, synthesize the CDK app - sh 'virtualenv -p /usr/bin/python venv && python --version && source venv/bin/activate && pip install -r requirements.txt && cdk synth' + sh 'virtualenv -p /usr/bin/python3 venv && python3 --version && source venv/bin/activate && pip install -r requirements.txt && cdk synth' } } stage('Confirm Deployment') {