Build a container from GitHub command points to wrong branch (master instead of main)
marianoguerra opened this issue · 0 comments
marianoguerra commented
hi,
in the README the command after "Build a container from GitHub:" says
docker build -t dmtf/redfish-mockup-server:latest https://github.com/DMTF/Redfish-Mockup-Server.git
which defaults to the master
branch, but the repo has a main
branch, the right command should probably be:
docker build -t dmtf/redfish-mockup-server:latest "https://github.com/DMTF/Redfish-Mockup-Server.git#main"