Bug in jenkinsfile fixed

This commit is contained in:
Karol Górzyński 2020-12-02 19:20:18 +01:00
parent e183f7e161
commit c4b5bf689b

2
Jenkinsfile vendored
View File

@ -8,6 +8,6 @@ pipeline {
}
}
stage('Build app') {
docker.image("session-companion:${env.BUILD_ID}").withRun(-p 8080:8080)
docker.image("session-companion:${env.BUILD_ID}").withRun('-p 5050:5050')
}
}