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:
docker build . -t gatsbyapp
f
In my case, I had an extra space after "." in context option
docker build -t myapp .[EXTRA_SPACE_HERE]