Fix Jenkinsfile.

This commit is contained in:
emil28092005
2026-01-16 08:10:07 +03:00
parent cc70057b63
commit 320d4d7502
Vendored
+6
View File
@@ -2,6 +2,12 @@ pipeline{
agent any
stages{
stage('Build') {
agent {
docker {
image 'docker:27-dind'
args '--privileged -v /var/run/docker.sock:/var/run/docker.sock'
}
}
steps {
echo 'Building shagram...'
sh 'docker build -t shagram-shagram:latest .'