An error, "failed to solve with frontend dockerfile.v0"
I was trying to build my Docker image for my Gatsby application. Whenever I run the command docker build . -t gatsbyapp , it gives me an error: failed to solve with frontend dockerfile.v0: failed to build LLB: failed to compute cache key: "/.env" not found: not found Meanwhile my Dockerfile is shown below: FROM node:13 WORKDIR /app COPY package.json . RUN ya