fix: fixed agent docker installation
Gitea/docker-base-images/jdk14-alpine/pipeline/head There was a failure building this commit
Details
Gitea/docker-base-images/jdk14-alpine/pipeline/head There was a failure building this commit
Details
parent
9aaaca58d1
commit
e559426d2e
|
@ -11,19 +11,16 @@ pipeline {
|
|||
docker {
|
||||
image 'alpine:3.17.3'
|
||||
// Mount docker socket for docker-in-docker
|
||||
args '-v /var/run/docker.sock:/var/run/docker.sock -v /usr/bin/docker:/usr/local/bin/docker'
|
||||
args '-v /var/run/docker.sock:/var/run/docker.sock'
|
||||
}
|
||||
}
|
||||
stages {
|
||||
stage('prepare') {
|
||||
steps {
|
||||
sh 'echo ${PATH}'
|
||||
sh 'ls -la /usr/local/bin | grep docker'
|
||||
sh "which docker"
|
||||
sh 'chmod +x /usr/local/bin/docker'
|
||||
sh """
|
||||
apk update && \
|
||||
apk add --no-cache git
|
||||
apk add --no-cache git && \
|
||||
apk add docker-cli
|
||||
"""
|
||||
script {
|
||||
env.IMAGE_BASE_NAME = "jdk14-alpine"
|
||||
|
|
Loading…
Reference in New Issue