I have a Dockerfile that is supposed to build an Ubuntu image. But whenever I run
docker build -t ubuntu-test:latest ./Dockerfile
it shows the fo
You need to point to the directory instead. You must not specify the dockerfile.
docker build -t ubuntu-test:latest . does work.
docker build -t ubuntu-test:latest .
docker build -t ubuntu-test:latest ./Dockerfile does not work.