Skip to content

Commit

Permalink
Fix hook for App Service (#1993)
Browse files Browse the repository at this point in the history
  • Loading branch information
pamelafox authored Sep 26, 2024
1 parent 0225f75 commit 46b3d6a
Showing 1 changed file with 15 additions and 0 deletions.
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:
# 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

0 comments on commit 46b3d6a

Please sign in to comment.