From cca050078b2db53e97e1be9925347a6659cb5098 Mon Sep 17 00:00:00 2001 From: The9thLime <87019366+The9thLime@users.noreply.github.com> Date: Sun, 21 Jul 2024 18:14:14 +0530 Subject: [PATCH] test #7 --- Jenkinsfile | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 16e83ed..6e0083c 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -9,13 +9,8 @@ pipeline { some-label: some-label-value spec: containers: - - name: maven - image: maven:alpine - command: - - cat - tty: true - - name: busybox - image: busybox + - name: python + image: python:slim command: - cat tty: true @@ -29,9 +24,6 @@ pipeline { container('maven') { sh 'mvn -version' } - container('busybox') { - sh '/bin/busybox' - } } } }