Docker file issue
While building the docker image the Add command is failing change that part to this.
RUN curl -fsSL https://astral.sh/uv/install.sh -o /uv-installer.sh &&
chmod +x /uv-installer.sh &&
/uv-installer.sh &&
rm /uv-installer.sh
This will rectify the error
Hi @JibinES ,
Unfortunately, @rasbt is currently recovering from an injury, therefore I'll do my best to assist you with your issue in the meantime.
I just tested it and rebuilt the image in VS Code, and it worked without any issues for me:
Could you please post the error message or, if possible, the build log to narrow down the issue?
If you haven't yet, apply the suggested fix:
Dockerfile Copy Edit
Replace the ADD command with this
RUN curl -fsSL https://astral.sh/uv/install.sh
-o /uv-installer.sh
&& chmod +x /uv-installer.sh
&& /uv-installer.sh
&& rm /uv-installer.sh
This could be a possible fix
Thanks for the suggestions here, took me some time, but I am slowly catching up with some older items on my todo list. (I am trying to incorporate it via #866 here)