зеркало из
1
0
Форкнуть 0
PSRule.Rules.Azure/.devcontainer/container-start.ps1

22 строки
542 B
PowerShell

# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.
# Note:
# This is run during container startup.
# Install Python packages
pip install -r requirements-docs.txt
# Restore .NET packages
dotnet restore
# Fetch the latest Bicep CLI binary
curl -Lo bicep https://github.com/Azure/bicep/releases/latest/download/bicep-linux-x64
# Mark it as executable
chmod +x ./bicep
# Add bicep to your PATH (requires admin)
sudo mv ./bicep /usr/local/bin/bicep
# Verify you can now access the 'bicep' command
bicep --version
# Done!