<https://open-source-silicon.slack.com/archives/C0...
# ieee-sscs-dc-24
c
https://open-source-silicon.slack.com/archives/C072ZFE19FH/p1718282608928689 For people facing a similar issue, the solution is to remove the docker build cache (which might be corrupted). To guarantee the solution's proper working, you should 1. reinstall docker engine following the steps mentioned in the doc closely 2. Do the following a.
docker stop $(sudo docker ps -aq)
b.
docker container prune
c.
docker image prune
d.
sudo docker builder prune --all
(commit any important work you might have in containers from before, if youve used docker before) p.s. thanks eric for the prompt responses
m
Great! thanks!