fix: fixed agent docker installation
Some checks failed
Gitea/docker-base-images/jdk14-alpine/pipeline/head There was a failure building this commit
Some checks failed
Gitea/docker-base-images/jdk14-alpine/pipeline/head There was a failure building this commit
This commit is contained in:
parent
9aaaca58d1
commit
e559426d2e
9
Jenkinsfile
vendored
9
Jenkinsfile
vendored
@ -11,19 +11,16 @@ pipeline {
|
|||||||
docker {
|
docker {
|
||||||
image 'alpine:3.17.3'
|
image 'alpine:3.17.3'
|
||||||
// Mount docker socket for docker-in-docker
|
// 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 {
|
stages {
|
||||||
stage('prepare') {
|
stage('prepare') {
|
||||||
steps {
|
steps {
|
||||||
sh 'echo ${PATH}'
|
|
||||||
sh 'ls -la /usr/local/bin | grep docker'
|
|
||||||
sh "which docker"
|
|
||||||
sh 'chmod +x /usr/local/bin/docker'
|
|
||||||
sh """
|
sh """
|
||||||
apk update && \
|
apk update && \
|
||||||
apk add --no-cache git
|
apk add --no-cache git && \
|
||||||
|
apk add docker-cli
|
||||||
"""
|
"""
|
||||||
script {
|
script {
|
||||||
env.IMAGE_BASE_NAME = "jdk14-alpine"
|
env.IMAGE_BASE_NAME = "jdk14-alpine"
|
||||||
|
Loading…
Reference in New Issue
Block a user