Hi Martin, On Sat, Jun 18, 2022 at 08:35:06PM +0200, Martin Liška wrote: > > I like this. But we cannot simply COPY in the bb-start.sh file. > > Because it isn't available on the container host. The > > DockerLatentWorker only sents the Container file. But we could fetch > > it from the git repo using: > > > > RUN wget -O /home/builder/bb-start.sh \ > > 'https://sourceware.org/git/?p=builder.git;a=blob_plain;f=builder/containers/bb-start.sh' \ > > && chmod 755 /home/builder/bb-start.sh > > Good, I've done that and pushed to main. > > However, I see an error now: > https://builder.sourceware.org/buildbot/#/builders/97/builds/248 > > Can you please check buildbot master log files in order to investigate what's wrong? The issue was that there were now both a RUN wget && chmod and a COPY in the Container files. Removing the COPY seems to have made it work again. Cheers, Mark