We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 854b88d commit ac3a813Copy full SHA for ac3a813
1 file changed
Jenkinsfile
@@ -10,7 +10,8 @@ node {
10
}
11
stage("Test with Docker") {
12
withEnv(["API_KEY=${env.ROSETTE_API_KEY}", "ALT_URL=${env.BINDING_TEST_URL}"]) {
13
- sh "docker run --rm -e API_KEY=${API_KEY} -e ALT_URL=${ALT_URL} -v ${SOURCEDIR}:/source rosetteapi/docker-python"
+ //sh "docker run --rm -e API_KEY=${API_KEY} -e ALT_URL=${ALT_URL} -v ${SOURCEDIR}:/source rosetteapi/docker-python"
14
+ docker.image("rosetteapi/docker-python").run("-e API_KEY=${API_KEY} -e ALT_URL=${ALT_URL} -v ${SOURCEDIR}:/source") {}
15
16
17
slack(true)
0 commit comments