-docker build命令用于構建Docker鏡像,而-f選項用于指定Dockerfile的路徑。常見的-f選項有以下幾種用法:
docker build -f /path/to/Dockerfile .
docker build -f https://github.com/username/repo/Dockerfile .
docker build -f /path/to/Dockerfile -t myimage:latest .
這些是常見的-f選項用法,可以根據實際需要選擇合適的用法。