Martin L Roth has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/79067?usp=email )
Change subject: util/docker: Switch back to root user in jenkins-node ......................................................................
util/docker: Switch back to root user in jenkins-node
Leaving the user as coreboot caused the entrypoint to run as coreboot, which means we couldn't mount directories or run sshd correctly.
Switching to root at the end of the file fixes this.
Signed-off-by: Martin Roth gaumless@gmail.com Change-Id: Ie10e1d7ad4def0faafe3bcd580a77e23c3bfe948 --- M util/docker/coreboot-jenkins-node/Dockerfile 1 file changed, 2 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/67/79067/1
diff --git a/util/docker/coreboot-jenkins-node/Dockerfile b/util/docker/coreboot-jenkins-node/Dockerfile index 2cd8d78..2c67df5 100644 --- a/util/docker/coreboot-jenkins-node/Dockerfile +++ b/util/docker/coreboot-jenkins-node/Dockerfile @@ -89,3 +89,5 @@ echo "{{SSH_KEY}}" > /home/coreboot/.ssh/authorized_keys && \ chmod 0700 /home/coreboot/.ssh && \ chmod 0600 /home/coreboot/.ssh/authorized_keys +USER root +