Go Buildpack は、go build command を使用してアプリケーション ソースを実行ファイルとしてコンパイルします。次の環境変数を使用して、ビルドの動作を構成できます。
GOOGLE_BUILDABLE
ビルド可能ユニットへのパスを指定します。例: Go の ./maindir は、maindir をルートとするパッケージをビルドします。
GOOGLE_CLEAR_SOURCE
アプリケーション イメージからソースコードを省略します。アプリケーションが Go テンプレートなどの静的ファイルに依存している場合、この変数を設定すると、アプリケーションが適切に動作しない可能性があります。例: true、True、1 はソースを消去します。
GOOGLE_GOGCFLAGS
解釈なしで -gcflags 値として go build と go run に渡されます。例: all=-N -l は、競合状態分析を有効にし、ソースのファイルパスをバイナリに記録する方法を変更します。
GOOGLE_GOLDFLAGS
解釈なしに -ldflags 値として go build と go run に渡されます。例: -s -w は、バイナリサイズを除去してサイズを小さくする場合に使用します。
依存関係の管理
Go モジュールを使用して、Go アプリの依存関係を管理することをおすすめします。Go Buildpack は go build コマンドを使用してアプリをビルドしますが、結果として、これは Go 自体の動作と一致します。アプリでモジュール対応モードを使用するには、アプリケーションのルートに go.mod ファイルを配置する必要があります。
依存関係のベンダリング
ベンダリングでは、ビルドプロセス中にソースからモジュールをダウンロードする代わりに、アプリが使用するパッケージがアプリケーションのディレクトリにコピーされます。Go には、アプリのルート ディレクトリにある vendor というディレクトリにアプリに必要なパッケージをベンダリングするための go build コマンドが用意されています。
アプリケーション エントリポイントを構成する
デフォルトでは、Go Buildpack は、アプリケーション ソースのコンパイル時に生成される main 実行可能ファイルを呼び出すように、アプリケーション コンテナのエントリを構成します。これをオーバーライドする場合は、Procfile を指定するか、GOOGLE_ENTRYPOINT 環境変数を渡します。
[[["わかりやすい","easyToUnderstand","thumb-up"],["問題の解決に役立った","solvedMyProblem","thumb-up"],["その他","otherUp","thumb-up"]],[["わかりにくい","hardToUnderstand","thumb-down"],["情報またはサンプルコードが不正確","incorrectInformationOrSampleCode","thumb-down"],["必要な情報 / サンプルがない","missingTheInformationSamplesINeed","thumb-down"],["翻訳に関する問題","translationIssue","thumb-down"],["その他","otherDown","thumb-down"]],["最終更新日 2025-04-02 UTC。"],[[["The Go buildpack defaults to the latest stable Go version, but you can specify a different version using the `GOOGLE_GO_VERSION` environment variable with a semver constraint."],["Compilation behavior can be configured via environment variables like `GOOGLE_BUILDABLE` to specify a buildable path, `GOOGLE_CLEAR_SOURCE` to omit source code, and `GOOGLE_GOGCFLAGS`/`GOOGLE_GOLDFLAGS` to pass custom flags."],["The buildpack utilizes Go modules for dependency management, recommending the inclusion of a `go.mod` file in your application's root directory for module-aware mode."],["Vendoring dependencies is supported by including a `vendor` directory in the app's root, using the `go build` command to collect dependencies."],["You can override the default application entrypoint (the compiled `main` executable) by providing a `Procfile` or using the `GOOGLE_ENTRYPOINT` environment variable."]]],[]]