I get this error
failed to solve with frontend dockerfile.v0: failed to create LLB definition
when I was trying to build this Docker image
**
FROM debian:jessie-slim
RUN apt-get update
RUN apt-get -y install iptables apt-utils iproute2 net-tools systemd telnet nano iputils-ping tcpdump inetutils-traceroute quagga isc-dhcp-server
RUN apt-get -f install
COPY ./quagga /etc/quagga
COPY ./dhcp/dhcpd.conf /etc/dhcp
COPY box_ext.sh /home/
RUN ["chmod", "+x", "/home/box_ext.sh"]
RUN mkdir /etc/scripts
ENV PATH "/etc/scripts:$PATH"
ENTRYPOINT /etc/init.d/quagga start && /bin/bash
```**
I got this error on MacOS Ventura using docker desktop version 4.9.1 when building a docker image from a Dockerfile. Error:
Initially, I thought it was a connection issue as I was behind a proxy, But It worked just by restarting my Docker Desktop app (Click on the docker icon on the top-right bar > Press Restart).