Skip to content

Instantly share code, notes, and snippets.

@deangrant
Created July 24, 2023 14:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save deangrant/25d704a845a2458b58f5e5b0899e81eb to your computer and use it in GitHub Desktop.
Save deangrant/25d704a845a2458b58f5e5b0899e81eb to your computer and use it in GitHub Desktop.
Code snippet to create zip package and publish to Azure Function App
npm prune --production
zip -r app.zip . --exclude @.funcignore --exclude .funcignore
az functionapp deployment source config-zip -g ${MY_RESOURCE_GROUP} -n ${MY_APP_NAME} --src app.zip
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment