ホットスポットに関する質問
コンテナを使用して、Python WebサイトをAzure Webアプリにデプロイする準備をしています。このソリューションでは、同じコンテナグループ内で複数のコンテナを使用します。コンテナを構築するDockerfileは以下のとおりです。

次のコマンドを使用してコンテナを構築します。images という名前の Azure Container Registry インスタンスはプライベートレジストリです。

レジストリのユーザー名とパスワードは「admin」です。
ウェブアプリは、将来のビルドに関係なく、常に同じバージョンのウェブサイトを実行する必要があります。
ウェブサイトを実行するには、Azure Web アプリを作成する必要があります。
指示をどのように実行すればよいですか?回答するには、回答欄で適切なオプションを選択してください。
注:正解ごとに1ポイントが加算されます。

正解:

Explanation:
Multi-container groups currently support only Linux containers. For Windows containers, Azure Container Instances only supports deployment of a single container instance. While we are working to bring all features to Windows containers, you can find current platform differences in the service.
Box 1: sku B1 --is-linux
Box 2: --deployment-container-image-name images.azurecr.io/website:v1.0.0 Box 3: container set --docker-registry-server-url https://images.azurecr.io -u admin -p admin Reference:
https://docs.microsoft.com/en-us/azure/container-instances/container-instances-container-groups