mirror of
https://github.com/serverless/serverless.git
synced 2026-01-18 14:58:43 +00:00
23 lines
788 B
Markdown
23 lines
788 B
Markdown
<!--
|
|
title: Serverless Framework Commands - Azure Functions - Deploy Function
|
|
menuText: Deploy Function
|
|
menuOrder: 5
|
|
description: Deploy your Azure Functions functions quickly
|
|
layout: Doc
|
|
-->
|
|
|
|
<!-- DOCS-SITE-LINK:START automatically generated -->
|
|
### [Read this on the main serverless docs site](https://www.serverless.com/framework/docs/providers/azure/cli-reference/deploy-function)
|
|
<!-- DOCS-SITE-LINK:END -->
|
|
|
|
# Azure - Deploy Function
|
|
|
|
The `sls deploy function` command deploys an individual function. This command simply compiles a deployment package with a single function handler. This is a much faster way of deploying changes in code.
|
|
|
|
```bash
|
|
serverless deploy function -f functionName
|
|
```
|
|
|
|
## Options
|
|
- `--function` or `-f` The name of the function which should be deployed
|