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 can also run docker build with -f option
-f
docker build -t ubuntu-test:latest -f Dockerfile.custom .