Trying to get inside the container.

Signed-off-by: Cliff Hill <xlorep@darkhelm.org>
This commit is contained in:
2021-10-26 10:36:48 -04:00
parent 45c0501454
commit 255fe1daae
Vendored
+5 -1
View File
@@ -1,12 +1,16 @@
pipeline {
agent {
docker {
dockerfile { filename 'Dockerfile-test' }
image 'python:3.10-alpine3.14'
args '--name playlist-test'
}
}
stages {
stage('Test') {
steps {
sh `sudo docker exec playlist-test /bin/bash`
sh `pwd`
sh 'uname -a'
sh 'nox --version'
}
}