az acr build 需要 <SOURCE_LOCATION> 参数
az acr build requored <SOURCE_LOCATION> parameter
我正在按照 official documentation
上的说明进行操作
执行命令时:
az acr build --registry <container_registry_name> --image webimage
我收到了
the following arguments are required: <SOURCE_LOCATION>
但根据文档, 不是必需的参数。
有人遇到过这种情况吗?
似乎这个 issue
已经被报告过,但是您可以通过传递代码所在的位置来解决这个问题
我转到应用程序的根文件夹并在命令末尾添加了一个点。这样我就通过了代码所在的位置().
az acr build --registry <container_registry_name> --image webimage .
我正在按照 official documentation
上的说明进行操作执行命令时:
az acr build --registry <container_registry_name> --image webimage
我收到了
the following arguments are required: <SOURCE_LOCATION>
但根据文档,
有人遇到过这种情况吗?
似乎这个 issue
已经被报告过,但是您可以通过传递代码所在的位置来解决这个问题
我转到应用程序的根文件夹并在命令末尾添加了一个点。这样我就通过了代码所在的位置(
az acr build --registry <container_registry_name> --image webimage .