我正在容器(Gitlab runner kubernetes pod)内构建一个容器,但它一直失败。要构建的容器的 Dockerfile 为:
FROM ubuntu
USER root
RUN ["touch", "hello"]
RUN touch test
CMD ["echo", "hello"]
它失败了RUN ["touch", "hello"]
:
process exited with error: fork/exec /usr/bin/touch: permission deniedsubprocess exited with status 1
当我评论该行时,它在下一行中失败:
process exited with error: fork/exec /bin/sh: permission deniedsubprocess exited with status 1
用户是 root,所以不应该有权限错误,因为我正在构建FROM ubuntu
exec 标志/bin
已设置。
我尝试在 gitlab runner pod 之外构建这个 Dockerfile。我启动了一个新的 Pod,并 在其中kubectl run ...
运行,它起作用了。buildah bud .
那么错误信息是什么意思呢?