aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Jenkinsfile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Jenkinsfile b/Jenkinsfile
index feb77d9..feec99d 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -9,7 +9,7 @@ pipeline {
}
stages {
stage('Prepare') {
- steps { sh 'apt-get update && apt-get install -y podman buildah' }
+ steps { sh 'apt-get update && apt-get install -y buildah' }
}
stage('Manifest') {
steps { sh "buildah manifest create $PROJECT" }
@@ -43,7 +43,7 @@ pipeline {
]) {
sh '''#!/bin/bash
IFS=" " read -r username password <<<"$CREDENTIALS"
- podman login docker.io \
+ buildah login docker.io \
--username "$username" \
--password-stdin <<< "$password"
'''