docker error on Ubuntu
Running ./agentk throws the following error
=> ERROR [agentk 7/11] RUN xargs -a apt-packages-list.txt apt-get install -y 0.3s
[agentk 7/11] RUN xargs -a apt-packages-list.txt apt-get install -y: 0.206 Reading package lists... 0.223 Building dependency tree... 0.226 Reading state information... 0.229 E: Unable to locate package chromium-driver 0.229 E: Unable to locate package cmake 0.229 E: Unable to locate package libclang-dev
failed to solve: process "/bin/sh -c xargs -a apt-packages-list.txt apt-get install -y" did not complete successfully: exit code: 123
Had the same prob on mac -> fixed it 4me by changing line 3 in the Dockerfile to
RUN apt-get -y update && apt-get upgrade -y && apt-get install -y
(didn't test, if the last "&& apt-get install -y" is really necessary, maybe it also works without that)