无法从 jenkins 管道 运行 docker 中的 python 脚本

Unable to run a python script inside docker from jenkins pipeline

我创建了一个 python 包(用于在 jenkins 中自动化构建阶段),可以使用 pip 安装。我还创建了一个 docker 文件,它将从 github 克隆 python 包,执行 pip 安装并导出可执行文件所在的路径(入口点,但是你想调用它)安装在容器中(例如:~/.local/bin)。这就是我的 docker 文件的样子。

FROM ros:melodic-ros-core-stretch
RUN apt-get update && apt-get -y install python-pip
RUN git clone <private-repo-with-personal-access-token>
RUN pip install <package-name>
RUN export PATH=~/.local/bin:$PATH 

所以我构建了这个图像,运行 容器并输入了一个打印 hello world 的可执行文件(入口点)。工作得很好。对此没有任何问题。总的来说,我想在 jenkins 管道中调用这个可执行文件(入口点)。我最初对此有疑问,然后我了解到在使用 docker 图像设置时,jenkins 管道在容器顶部运行,但使用分配给 jenkins 的工作空间 /var/lib/jenkins/workspace。这就是我的詹金斯管道脚本的样子

pipeline {
    agent {
         docker {
              args '--network host -u root:root'
              image '<private-docker-hub-image>'
              registryCredentialsId 'docker-credentials'
              registryUrl 'https://registry.hub.docker.com'
         }
    }
    stages {
        stage('Test') {
            steps {
                sh 'test-build'
            }
        }
    }
}

这是我遇到的错误。

Started by user Automated Build Environment
Running in Durability level: MAX_SURVIVABILITY
[Pipeline] Start of Pipeline
[Pipeline] node
Running on Jenkins in /var/lib/jenkins/workspace/First_item
[Pipeline] {
[Pipeline] withEnv
[Pipeline] {
[Pipeline] withDockerRegistry
$ docker login -u <docker username> -p ******** https://registry.hub.docker.com
WARNING! Using --password via the CLI is insecure. Use --password-stdin.
WARNING! Your password will be stored unencrypted in /var/lib/jenkins/workspace/First_item@tmp/251189be-62eb-4134-84ca-d70190ab080f/config.json.
Configure a credential helper to remove this warning. See
https://docs.docker.com/engine/reference/commandline/login/#credentials-store

Login Succeeded
[Pipeline] {
[Pipeline] sh
+ docker inspect -f . <private-dockerhub-image>

Error: No such object: <private-dockerhub-image>
[Pipeline] sh
+ docker inspect -f . registry.hub.docker.com/<private-dockerhub-image>
.
[Pipeline] withDockerContainer
Jenkins does not seem to be running inside a container
$ docker run -t -d -u 125:130 --network host -u root:root -v /var/lib/jenkins:/var/lib/jenkins -w /var/lib/jenkins/workspace/First_item -v /var/lib/jenkins/workspace/First_item:/var/lib/jenkins/workspace/First_item:rw,z -v /var/lib/jenkins/workspace/First_item@tmp:/var/lib/jenkins/workspace/First_item@tmp:rw,z -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** -e ******** registry.hub.docker.com/<private-dockerhub-image> cat
$ docker top ab1f2ec9b503f9b916ee96943dc849acc90716f7543b4841ff3901b7a65aea54 -eo pid,comm
[Pipeline] {
[Pipeline] stage (hide)
[Pipeline] { (Test)
[Pipeline] sh
+ test-build
/var/lib/jenkins/workspace/First_item@tmp/durable-7cb108f7/script.sh: 1: /var/lib/jenkins/workspace/First_item@tmp/durable-7cb108f7/script.sh: test-build: not found
[Pipeline] }
[Pipeline] // stage
[Pipeline] }
$ docker stop --time=1 ab1f2ec9b503f9b916ee96943dc849acc90716f7543b4841ff3901b7a65aea54
$ docker rm -f ab1f2ec9b503f9b916ee96943dc849acc90716f7543b4841ff3901b7a65aea54
[Pipeline] // withDockerContainer
[Pipeline] }
[Pipeline] // withDockerRegistry
[Pipeline] }
[Pipeline] // withEnv
[Pipeline] }
[Pipeline] // node
[Pipeline] End of Pipeline
ERROR: script returned exit code 127
Finished: FAILURE

我的问题是 rosdep、bloom-generate 和其他几个脚本(知道这些脚本是作为机器人操作系统中 ~/.local/bin 中另一个 pip 包的一部分安装的脚本就足够了)如何工作在管道中,但不是我通过 pip 安装的脚本。如果能指出我所缺少的东西,我将不胜感激。

谢谢。非常感谢帮助。

对不起。解决方案非常简单。我犯的错误是我更新了 docker 文件并创建了一个新图像,将其推送到 dockerhub 但忘记在 Jenkins master 运行 实例中修剪和更新最新副本].所以基本上我的 dockerhub 只能说版本。 101 和我创建 docker 文件和 docker 图像的本地计算机有版本。 101. 但是 Jenkins master 在 v.52 中。因此,即使我进行了更改,更新的图像也不是由 Jenkins master 拉取的,你去吧!这对我来说是一个愚蠢的错误。我感谢你们每一位在这里帮助我的人。和平!