Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions azure.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,23 @@ services:
language: py
# Please check docs/azure_container_apps.md for more information on how to deploy to Azure Container Apps
# host: containerapp
# docker:
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Also added this as I prefer remoteBuild for ACA deployments.

# remoteBuild: true
host: appservice
hooks:
# This hook is called when App Service is the host
prepackage:
windows:
shell: pwsh
run: cd ../frontend;npm install;npm run build
interactive: false
continueOnError: false
posix:
shell: sh
run: cd ../frontend;npm install;npm run build
interactive: false
continueOnError: false
# This hook is called when Azure Container Apps is the host
prebuild:
windows:
shell: pwsh
Expand Down