Skip to content
Closed
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
Original file line number Diff line number Diff line change
Expand Up @@ -238,19 +238,20 @@ In this section, you publish your project to Azure in a function app running Lin
# [macOS](#tab/macos)

```bash
GOOS=linux GOARCH=amd64 go build handler.go
CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build handler.go
```

# [Linux](#tab/linux)

```bash
GOOS=linux GOARCH=amd64 go build handler.go
CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build handler.go
```

# [Windows](#tab/windows)
```cmd
set GOOS=linux
set GOARCH=amd64
set CGO_ENABLED=0
go build handler.go
```

Expand Down