├── .bazelrc ├── .gcloudignore ├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── BUILD.bazel ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── WORKSPACE ├── cmd ├── config │ ├── entrypoint │ │ ├── BUILD.bazel │ │ ├── lib │ │ │ ├── BUILD.bazel │ │ │ ├── lib.go │ │ │ └── lib_test.go │ │ └── main.go │ └── flex │ │ ├── BUILD.bazel │ │ ├── lib │ │ ├── BUILD.bazel │ │ ├── lib.go │ │ └── lib_test.go │ │ └── main.go ├── cpp │ ├── clear_source │ │ ├── BUILD.bazel │ │ ├── lib │ │ │ ├── BUILD.bazel │ │ │ ├── lib.go │ │ │ └── lib_test.go │ │ └── main.go │ └── functions_framework │ │ ├── BUILD.bazel │ │ ├── converter │ │ ├── CMakeLists.txt │ │ ├── vcpkg.json │ │ └── x64-linux-nodebug.cmake │ │ ├── lib │ │ ├── BUILD.bazel │ │ ├── lib.go │ │ ├── lib_test.go │ │ └── template_v0.go │ │ └── main.go ├── dart │ ├── compile │ │ ├── BUILD.bazel │ │ ├── lib │ │ │ ├── BUILD.bazel │ │ │ ├── lib.go │ │ │ └── lib_test.go │ │ └── main.go │ ├── pub │ │ ├── BUILD.bazel │ │ ├── lib │ │ │ ├── BUILD.bazel │ │ │ ├── lib.go │ │ │ └── lib_test.go │ │ └── main.go │ └── sdk │ │ ├── BUILD.bazel │ │ ├── lib │ │ ├── BUILD.bazel │ │ ├── lib.go │ │ └── lib_test.go │ │ └── main.go ├── dotnet │ ├── appengine │ │ ├── BUILD.bazel │ │ ├── lib │ │ │ ├── BUILD.bazel │ │ │ ├── lib.go │ │ │ └── lib_test.go │ │ └── main.go │ ├── appengine_main │ │ ├── BUILD.bazel │ │ ├── lib │ │ │ ├── BUILD.bazel │ │ │ ├── lib.go │ │ │ └── lib_test.go │ │ └── main.go │ ├── flex │ │ ├── BUILD.bazel │ │ ├── lib │ │ │ ├── BUILD.bazel │ │ │ ├── lib.go │ │ │ └── lib_test.go │ │ └── main.go │ ├── functions_framework │ │ ├── BUILD.bazel │ │ ├── lib │ │ │ ├── BUILD.bazel │ │ │ ├── lib.go │ │ │ └── lib_test.go │ │ └── main.go │ ├── publish │ │ ├── BUILD.bazel │ │ ├── lib │ │ │ ├── BUILD.bazel │ │ │ ├── lib.go │ │ │ └── lib_test.go │ │ └── main.go │ ├── runtime │ │ ├── BUILD.bazel │ │ ├── lib │ │ │ ├── BUILD.bazel │ │ │ ├── lib.go │ │ │ └── lib_test.go │ │ └── main.go │ └── sdk │ │ ├── BUILD.bazel │ │ ├── lib │ │ ├── BUILD.bazel │ │ ├── lib.go │ │ └── lib_test.go │ │ └── main.go ├── firebase │ ├── preparer │ │ ├── BUILD.bazel │ │ └── main.go │ └── publisher │ │ ├── BUILD.bazel │ │ └── main.go ├── go │ ├── appengine │ │ ├── BUILD.bazel │ │ ├── lib │ │ │ ├── BUILD.bazel │ │ │ ├── lib.go │ │ │ └── lib_test.go │ │ └── main.go │ ├── appengine_gomod │ │ ├── BUILD.bazel │ │ ├── lib │ │ │ ├── BUILD.bazel │ │ │ ├── lib.go │ │ │ └── lib_test.go │ │ └── main.go │ ├── appengine_gopath │ │ ├── BUILD.bazel │ │ ├── lib │ │ │ ├── BUILD.bazel │ │ │ ├── lib.go │ │ │ └── lib_test.go │ │ └── main.go │ ├── build │ │ ├── BUILD.bazel │ │ ├── lib │ │ │ ├── BUILD.bazel │ │ │ ├── lib.go │ │ │ └── lib_test.go │ │ └── main.go │ ├── clear_source │ │ ├── BUILD.bazel │ │ ├── lib │ │ │ ├── BUILD.bazel │ │ │ ├── lib.go │ │ │ └── lib_test.go │ │ └── main.go │ ├── flex_gomod │ │ ├── BUILD.bazel │ │ ├── lib │ │ │ ├── BUILD.bazel │ │ │ ├── lib.go │ │ │ └── lib_test.go │ │ └── main.go │ ├── functions_framework │ │ ├── BUILD.bazel │ │ ├── converter │ │ │ ├── get_package │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── main.go │ │ │ │ └── main_test.go │ │ │ └── without-framework │ │ │ │ ├── go.mod │ │ │ │ └── main.go │ │ ├── lib │ │ │ ├── BUILD.bazel │ │ │ ├── lib.go │ │ │ ├── lib_test.go │ │ │ ├── template_declarative.go │ │ │ ├── template_v0.go │ │ │ └── template_v1_1.go │ │ └── main.go │ ├── gomod │ │ ├── BUILD.bazel │ │ ├── lib │ │ │ ├── BUILD.bazel │ │ │ ├── lib.go │ │ │ └── lib_test.go │ │ └── main.go │ ├── gopath │ │ ├── BUILD.bazel │ │ ├── lib │ │ │ ├── BUILD.bazel │ │ │ ├── lib.go │ │ │ └── lib_test.go │ │ └── main.go │ ├── legacy_worker │ │ ├── BUILD.bazel │ │ ├── converter │ │ │ └── get_package │ │ │ │ ├── main.go │ │ │ │ └── main_test.go │ │ ├── lib │ │ │ ├── BUILD.bazel │ │ │ ├── converter │ │ │ │ └── worker │ │ │ │ │ ├── gomod.tmpl │ │ │ │ │ └── main.tmpl │ │ │ ├── lib.go │ │ │ └── lib_test.go │ │ └── main.go │ └── runtime │ │ ├── BUILD.bazel │ │ ├── lib │ │ ├── BUILD.bazel │ │ ├── lib.go │ │ └── lib_test.go │ │ └── main.go ├── java │ ├── appengine │ │ ├── BUILD.bazel │ │ ├── lib │ │ │ ├── BUILD.bazel │ │ │ ├── lib.go │ │ │ └── lib_test.go │ │ └── main.go │ ├── clear_source │ │ ├── BUILD.bazel │ │ ├── lib │ │ │ ├── BUILD.bazel │ │ │ ├── lib.go │ │ │ └── lib_test.go │ │ └── main.go │ ├── entrypoint │ │ ├── BUILD.bazel │ │ ├── lib │ │ │ ├── BUILD.bazel │ │ │ ├── lib.go │ │ │ └── lib_test.go │ │ └── main.go │ ├── exploded_jar │ │ ├── BUILD.bazel │ │ ├── lib │ │ │ ├── BUILD.bazel │ │ │ ├── lib.go │ │ │ └── lib_test.go │ │ └── main.go │ ├── functions_framework │ │ ├── BUILD.bazel │ │ ├── extra_tasks.gradle │ │ ├── launch.sh │ │ ├── lib │ │ │ ├── BUILD.bazel │ │ │ ├── lib.go │ │ │ └── lib_test.go │ │ └── main.go │ ├── graalvm │ │ ├── BUILD.bazel │ │ ├── lib │ │ │ ├── BUILD.bazel │ │ │ ├── lib.go │ │ │ └── lib_test.go │ │ └── main.go │ ├── gradle │ │ ├── BUILD.bazel │ │ ├── lib │ │ │ ├── BUILD.bazel │ │ │ ├── lib.go │ │ │ └── lib_test.go │ │ └── main.go │ ├── maven │ │ ├── BUILD.bazel │ │ ├── lib │ │ │ ├── BUILD.bazel │ │ │ ├── lib.go │ │ │ └── lib_test.go │ │ └── main.go │ ├── native_image │ │ ├── BUILD.bazel │ │ ├── lib │ │ │ ├── BUILD.bazel │ │ │ ├── lib.go │ │ │ └── lib_test.go │ │ └── main.go │ ├── runtime │ │ ├── BUILD.bazel │ │ ├── lib │ │ │ ├── BUILD.bazel │ │ │ ├── lib.go │ │ │ └── lib_test.go │ │ └── main.go │ └── spring_boot │ │ ├── BUILD.bazel │ │ ├── lib │ │ ├── BUILD.bazel │ │ ├── lib.go │ │ └── lib_test.go │ │ └── main.go ├── nodejs │ ├── README.md │ ├── appengine │ │ ├── BUILD.bazel │ │ ├── lib │ │ │ ├── BUILD.bazel │ │ │ ├── lib.go │ │ │ └── lib_test.go │ │ └── main.go │ ├── firebaseangular │ │ ├── BUILD.bazel │ │ ├── lib │ │ │ ├── BUILD.bazel │ │ │ ├── lib.go │ │ │ └── lib_test.go │ │ └── main.go │ ├── firebasebundle │ │ ├── BUILD.bazel │ │ ├── lib │ │ │ ├── BUILD.bazel │ │ │ ├── lib.go │ │ │ ├── lib_test.go │ │ │ └── testdata │ │ │ │ ├── gemini_app_package.json │ │ │ │ └── genkit_app_package.json │ │ └── main.go │ ├── firebasenextjs │ │ ├── BUILD.bazel │ │ ├── lib │ │ │ ├── BUILD.bazel │ │ │ ├── lib.go │ │ │ └── lib_test.go │ │ └── main.go │ ├── firebasenx │ │ ├── BUILD.bazel │ │ ├── lib │ │ │ ├── BUILD.bazel │ │ │ ├── lib.go │ │ │ └── lib_test.go │ │ └── main.go │ ├── functions_framework │ │ ├── BUILD.bazel │ │ ├── bytecode_cache │ │ │ ├── main.js │ │ │ ├── main_test.js │ │ │ └── runtime-cache-symlink.sh │ │ ├── converter │ │ │ ├── without-framework-compat │ │ │ │ ├── package-lock.json │ │ │ │ └── package.json │ │ │ └── without-framework │ │ │ │ ├── package-lock.json │ │ │ │ └── package.json │ │ ├── lib │ │ │ ├── BUILD.bazel │ │ │ ├── lib.go │ │ │ └── lib_test.go │ │ └── main.go │ ├── legacy_worker │ │ ├── BUILD.bazel │ │ ├── converter │ │ │ └── worker │ │ │ │ ├── package.json │ │ │ │ └── worker.js │ │ ├── lib │ │ │ ├── BUILD.bazel │ │ │ ├── lib.go │ │ │ └── lib_test.go │ │ └── main.go │ ├── npm │ │ ├── BUILD.bazel │ │ ├── lib │ │ │ ├── BUILD.bazel │ │ │ ├── lib.go │ │ │ └── lib_test.go │ │ └── main.go │ ├── pnpm │ │ ├── BUILD.bazel │ │ ├── lib │ │ │ ├── BUILD.bazel │ │ │ ├── lib.go │ │ │ └── lib_test.go │ │ └── main.go │ ├── runtime │ │ ├── BUILD.bazel │ │ ├── exec │ │ │ └── heapsize.sh │ │ ├── lib │ │ │ ├── BUILD.bazel │ │ │ ├── lib.go │ │ │ └── lib_test.go │ │ └── main.go │ ├── turborepo │ │ ├── BUILD.bazel │ │ ├── lib │ │ │ ├── BUILD.bazel │ │ │ ├── lib.go │ │ │ └── lib_test.go │ │ └── main.go │ └── yarn │ │ ├── BUILD.bazel │ │ ├── lib │ │ ├── BUILD.bazel │ │ ├── lib.go │ │ └── lib_test.go │ │ └── main.go ├── php │ ├── appengine │ │ ├── BUILD.bazel │ │ ├── lib │ │ │ ├── BUILD.bazel │ │ │ ├── lib.go │ │ │ └── lib_test.go │ │ └── main.go │ ├── cloudfunctions │ │ ├── BUILD.bazel │ │ ├── lib │ │ │ ├── BUILD.bazel │ │ │ ├── lib.go │ │ │ └── lib_test.go │ │ └── main.go │ ├── composer │ │ ├── BUILD.bazel │ │ ├── lib │ │ │ ├── BUILD.bazel │ │ │ ├── lib.go │ │ │ └── lib_test.go │ │ └── main.go │ ├── composer_gcp_build │ │ ├── BUILD.bazel │ │ ├── lib │ │ │ ├── BUILD.bazel │ │ │ ├── lib.go │ │ │ └── lib_test.go │ │ └── main.go │ ├── composer_install │ │ ├── BUILD.bazel │ │ ├── lib │ │ │ ├── BUILD.bazel │ │ │ ├── lib.go │ │ │ └── lib_test.go │ │ └── main.go │ ├── functions_framework │ │ ├── BUILD.bazel │ │ ├── converter │ │ │ ├── composer.json │ │ │ └── composer.lock │ │ ├── lib │ │ │ ├── BUILD.bazel │ │ │ ├── lib.go │ │ │ └── lib_test.go │ │ └── main.go │ ├── runtime │ │ ├── BUILD.bazel │ │ ├── lib │ │ │ ├── BUILD.bazel │ │ │ ├── lib.go │ │ │ └── lib_test.go │ │ └── main.go │ ├── supervisor │ │ ├── BUILD.bazel │ │ ├── lib │ │ │ ├── BUILD.bazel │ │ │ ├── lib.go │ │ │ └── lib_test.go │ │ └── main.go │ └── webconfig │ │ ├── BUILD.bazel │ │ ├── lib │ │ ├── BUILD.bazel │ │ ├── lib.go │ │ └── lib_test.go │ │ └── main.go ├── python │ ├── appengine │ │ ├── BUILD.bazel │ │ ├── lib │ │ │ ├── BUILD.bazel │ │ │ ├── lib.go │ │ │ └── lib_test.go │ │ └── main.go │ ├── functions_framework │ │ ├── BUILD.bazel │ │ ├── converter │ │ │ └── requirements.txt │ │ ├── lib │ │ │ ├── BUILD.bazel │ │ │ ├── lib.go │ │ │ └── lib_test.go │ │ └── main.go │ ├── functions_framework_compat │ │ ├── BUILD.bazel │ │ ├── converter │ │ │ └── requirements.txt │ │ ├── lib │ │ │ ├── BUILD.bazel │ │ │ ├── lib.go │ │ │ └── lib_test.go │ │ └── main.go │ ├── link_runtime │ │ ├── BUILD.bazel │ │ ├── lib │ │ │ ├── BUILD.bazel │ │ │ ├── lib.go │ │ │ └── lib_test.go │ │ └── main.go │ ├── missing_entrypoint │ │ ├── BUILD.bazel │ │ ├── lib │ │ │ ├── BUILD.bazel │ │ │ ├── lib.go │ │ │ └── lib_test.go │ │ └── main.go │ ├── pip │ │ ├── BUILD.bazel │ │ ├── lib │ │ │ ├── BUILD.bazel │ │ │ ├── lib.go │ │ │ └── lib_test.go │ │ └── main.go │ ├── poetry │ │ ├── BUILD.bazel │ │ ├── lib │ │ │ ├── BUILD.bazel │ │ │ ├── lib.go │ │ │ └── lib_test.go │ │ └── main.go │ ├── runtime │ │ ├── BUILD.bazel │ │ ├── lib │ │ │ ├── BUILD.bazel │ │ │ ├── lib.go │ │ │ └── lib_test.go │ │ └── main.go │ ├── uv │ │ ├── BUILD.bazel │ │ ├── lib │ │ │ ├── BUILD.bazel │ │ │ ├── lib.go │ │ │ └── lib_test.go │ │ └── main.go │ └── webserver │ │ ├── BUILD.bazel │ │ ├── lib │ │ ├── BUILD.bazel │ │ ├── lib.go │ │ └── lib_test.go │ │ ├── main.go │ │ └── requirements.txt ├── ruby │ ├── appengine │ │ ├── BUILD.bazel │ │ ├── lib │ │ │ ├── BUILD.bazel │ │ │ ├── lib.go │ │ │ └── lib_test.go │ │ └── main.go │ ├── appengine_validation │ │ ├── BUILD.bazel │ │ ├── lib │ │ │ ├── BUILD.bazel │ │ │ ├── lib.go │ │ │ └── lib_test.go │ │ ├── main.go │ │ └── scripts │ │ │ └── check_gemfile_version.rb │ ├── bundle │ │ ├── BUILD.bazel │ │ ├── lib │ │ │ ├── BUILD.bazel │ │ │ ├── lib.go │ │ │ └── lib_test.go │ │ └── main.go │ ├── flex_entrypoint │ │ ├── BUILD.bazel │ │ ├── lib │ │ │ ├── BUILD.bazel │ │ │ ├── lib.go │ │ │ └── lib_test.go │ │ └── main.go │ ├── functions_framework │ │ ├── BUILD.bazel │ │ ├── lib │ │ │ ├── BUILD.bazel │ │ │ ├── lib.go │ │ │ └── lib_test.go │ │ └── main.go │ ├── missing_entrypoint │ │ ├── BUILD.bazel │ │ ├── lib │ │ │ ├── BUILD.bazel │ │ │ └── lib.go │ │ └── main.go │ ├── rails │ │ ├── BUILD.bazel │ │ ├── lib │ │ │ ├── BUILD.bazel │ │ │ ├── lib.go │ │ │ └── lib_test.go │ │ └── main.go │ ├── rubygems │ │ ├── BUILD.bazel │ │ ├── lib │ │ │ ├── BUILD.bazel │ │ │ ├── lib.go │ │ │ ├── lib_test.go │ │ │ └── testdata │ │ │ │ ├── bundler1 │ │ │ │ ├── Gemfile │ │ │ │ ├── Gemfile.lock │ │ │ │ └── main.rb │ │ │ │ ├── bundler2 │ │ │ │ ├── Gemfile │ │ │ │ ├── Gemfile.lock │ │ │ │ └── main.rb │ │ │ │ └── dummy-rubygems.tar.gz │ │ └── main.go │ └── runtime │ │ ├── BUILD.bazel │ │ ├── lib │ │ ├── BUILD.bazel │ │ ├── lib.go │ │ └── lib_test.go │ │ └── main.go └── utils │ ├── archive_source │ ├── BUILD.bazel │ ├── lib │ │ ├── BUILD.bazel │ │ ├── lib.go │ │ └── lib_test.go │ └── main.go │ ├── label │ ├── BUILD.bazel │ ├── README.md │ ├── lib │ │ ├── BUILD.bazel │ │ ├── lib.go │ │ └── lib_test.go │ └── main.go │ └── nginx │ ├── BUILD.bazel │ ├── lib │ ├── BUILD.bazel │ ├── lib.go │ └── lib_test.go │ └── main.go ├── go.mod ├── internal ├── acceptance │ ├── BUILD.bazel │ ├── acceptance.go │ ├── acceptance_test.go │ ├── args.bzl │ ├── defs.bzl │ ├── environment.go │ ├── structure.go │ └── structure_test.go ├── buildpacktest │ ├── BUILD.bazel │ └── buildpacktest.go ├── buildpacktestenv │ ├── BUILD.bazel │ └── buildpacktestenv.go ├── checktools │ ├── BUILD.bazel │ └── checktools.go ├── fakesecretmanager │ ├── BUILD.bazel │ └── fakesecretmanager.go ├── mockprocess │ ├── BUILD.bazel │ ├── cmd │ │ ├── BUILD.bazel │ │ └── main.go │ ├── mockprocess.go │ └── mockprocessutil │ │ ├── BUILD.bazel │ │ └── mockprocessutil.go └── testserver │ ├── BUILD.bazel │ └── testserver.go ├── kokoro ├── BUILD.bazel ├── presubmit │ ├── common.cfg │ ├── dotnet │ │ ├── dotnet3_gcf_test.cfg │ │ ├── dotnet3_gcp_test.cfg │ │ ├── dotnet6_flex_test.cfg │ │ ├── dotnet6_gcf_test.cfg │ │ ├── dotnet6_gcp_test.cfg │ │ ├── dotnet7_gcp_test.cfg │ │ ├── dotnet8_flex_test.cfg │ │ ├── dotnet8_gcf_test.cfg │ │ ├── dotnet8_gcp_test.cfg │ │ ├── flex.cfg │ │ ├── gcf.cfg │ │ └── gcp.cfg │ ├── gcp │ │ ├── common.cfg │ │ ├── cpp.cfg │ │ ├── dart.cfg │ │ ├── dotnet.cfg │ │ ├── go.cfg │ │ ├── java.cfg │ │ ├── nodejs.cfg │ │ ├── php.cfg │ │ ├── python.cfg │ │ └── ruby.cfg │ ├── go │ │ ├── flex.cfg │ │ ├── gae.cfg │ │ ├── gcf.cfg │ │ ├── gcp.cfg │ │ ├── go111_gae_test.cfg │ │ ├── go111_gcp_test.cfg │ │ ├── go112_gae_test.cfg │ │ ├── go112_gcp_test.cfg │ │ ├── go113_gae_test.cfg │ │ ├── go113_gcf_test.cfg │ │ ├── go113_gcp_test.cfg │ │ ├── go114_gae_test.cfg │ │ ├── go114_gcp_test.cfg │ │ ├── go115_gae_test.cfg │ │ ├── go115_gcp_test.cfg │ │ ├── go116_gae_test.cfg │ │ ├── go116_gcf_test.cfg │ │ ├── go116_gcp_test.cfg │ │ ├── go118_flex_test.cfg │ │ ├── go118_gae_test.cfg │ │ ├── go118_gcf_test.cfg │ │ ├── go118_gcp_test.cfg │ │ ├── go119_flex_test.cfg │ │ ├── go119_gae_test.cfg │ │ ├── go119_gcf_test.cfg │ │ ├── go119_gcp_test.cfg │ │ ├── go120_flex_test.cfg │ │ ├── go120_gae_test.cfg │ │ ├── go120_gcf_test.cfg │ │ ├── go120_gcp_test.cfg │ │ ├── go121_flex_test.cfg │ │ ├── go121_gae_test.cfg │ │ ├── go121_gcf_test.cfg │ │ ├── go121_gcp_test.cfg │ │ ├── go122_flex_test.cfg │ │ ├── go122_gae_test.cfg │ │ ├── go122_gcf_test.cfg │ │ ├── go122_gcp_test.cfg │ │ ├── go123_flex_test.cfg │ │ ├── go123_gae_test.cfg │ │ ├── go123_gcf_test.cfg │ │ ├── go123_gcp_test.cfg │ │ ├── go124_flex_test.cfg │ │ ├── go124_gae_test.cfg │ │ ├── go124_gcf_test.cfg │ │ ├── go124_gcp_test.cfg │ │ ├── go125_flex_test.cfg │ │ ├── go125_gae_test.cfg │ │ ├── go125_gcf_test.cfg │ │ └── go125_gcp_test.cfg │ ├── java │ │ ├── flex.cfg │ │ ├── gae.cfg │ │ ├── gcf.cfg │ │ ├── gcp.cfg │ │ ├── java11_flex_test.cfg │ │ ├── java11_gae_test.cfg │ │ ├── java11_gcf_test.cfg │ │ ├── java11_gcp_test.cfg │ │ ├── java17_flex_test.cfg │ │ ├── java17_gae_test.cfg │ │ ├── java17_gcf_test.cfg │ │ ├── java17_gcp_test.cfg │ │ ├── java21_flex_test.cfg │ │ ├── java21_gae_test.cfg │ │ ├── java21_gcf_test.cfg │ │ ├── java21_gcp_test.cfg │ │ ├── java25_flex_test.cfg │ │ ├── java25_gae_test.cfg │ │ ├── java25_gcf_test.cfg │ │ └── java25_gcp_test.cfg │ ├── nodejs │ │ ├── flex.cfg │ │ ├── gae.cfg │ │ ├── gcf.cfg │ │ ├── gcp.cfg │ │ ├── nodejs10_gae_test.cfg │ │ ├── nodejs10_gcf_test.cfg │ │ ├── nodejs10_gcp_test.cfg │ │ ├── nodejs12_gae_test.cfg │ │ ├── nodejs12_gcf_test.cfg │ │ ├── nodejs12_gcp_test.cfg │ │ ├── nodejs14_gae_test.cfg │ │ ├── nodejs14_gcf_test.cfg │ │ ├── nodejs14_gcp_test.cfg │ │ ├── nodejs16_gae_test.cfg │ │ ├── nodejs16_gcf_test.cfg │ │ ├── nodejs16_gcp_test.cfg │ │ ├── nodejs18_flex_test.cfg │ │ ├── nodejs18_gae_test.cfg │ │ ├── nodejs18_gcf_test.cfg │ │ ├── nodejs18_gcp_test.cfg │ │ ├── nodejs20_flex_test.cfg │ │ ├── nodejs20_gae_test.cfg │ │ ├── nodejs20_gcf_test.cfg │ │ ├── nodejs20_gcp_test.cfg │ │ ├── nodejs22_flex_test.cfg │ │ ├── nodejs22_gae_test.cfg │ │ ├── nodejs22_gcf_test.cfg │ │ ├── nodejs22_gcp_test.cfg │ │ ├── nodejs24_flex_test.cfg │ │ ├── nodejs24_gae_test.cfg │ │ ├── nodejs24_gcf_test.cfg │ │ └── nodejs24_gcp_test.cfg │ ├── php │ │ ├── flex.cfg │ │ ├── gae.cfg │ │ ├── gcf.cfg │ │ ├── gcp.cfg │ │ ├── php72_gae_test.cfg │ │ ├── php72_gcp_test.cfg │ │ ├── php73_gae_test.cfg │ │ ├── php73_gcp_test.cfg │ │ ├── php74_flex_test.cfg │ │ ├── php74_gae_test.cfg │ │ ├── php74_gcf_test.cfg │ │ ├── php74_gcp_test.cfg │ │ ├── php81_flex_test.cfg │ │ ├── php81_gae_test.cfg │ │ ├── php81_gcf_test.cfg │ │ ├── php81_gcp_test.cfg │ │ ├── php82_flex_test.cfg │ │ ├── php82_gae_test.cfg │ │ ├── php82_gcf_test.cfg │ │ ├── php82_gcp_test.cfg │ │ ├── php83_flex_test.cfg │ │ ├── php83_gae_test.cfg │ │ ├── php83_gcf_test.cfg │ │ ├── php83_gcp_test.cfg │ │ ├── php84_flex_test.cfg │ │ ├── php84_gae_test.cfg │ │ ├── php84_gcf_test.cfg │ │ └── php84_gcp_test.cfg │ ├── python │ │ ├── flex.cfg │ │ ├── gae.cfg │ │ ├── gcf-1.cfg │ │ ├── gcf-2.cfg │ │ ├── gcp-1.cfg │ │ ├── gcp-2.cfg │ │ ├── python310_flex_test.cfg │ │ ├── python310_gae_test.cfg │ │ ├── python310_gcf_test.cfg │ │ ├── python310_gcp_test.cfg │ │ ├── python311_flex_test.cfg │ │ ├── python311_gae_test.cfg │ │ ├── python311_gcf_test.cfg │ │ ├── python311_gcp_test.cfg │ │ ├── python312_flex_test.cfg │ │ ├── python312_gae_test.cfg │ │ ├── python312_gcf_test.cfg │ │ ├── python312_gcp_test.cfg │ │ ├── python313_flex_test.cfg │ │ ├── python313_gae_test.cfg │ │ ├── python313_gcf_test.cfg │ │ ├── python313_gcp_test.cfg │ │ ├── python314_flex_test.cfg │ │ ├── python314_gae_test.cfg │ │ ├── python314_gcf_test.cfg │ │ ├── python314_gcp_test.cfg │ │ ├── python37_gae_test.cfg │ │ ├── python37_gcf_test.cfg │ │ ├── python37_gcp_test.cfg │ │ ├── python38_flex_test.cfg │ │ ├── python38_gae_test.cfg │ │ ├── python38_gcf_test.cfg │ │ ├── python38_gcp_test.cfg │ │ ├── python39_flex_test.cfg │ │ ├── python39_gae_test.cfg │ │ ├── python39_gcf_test.cfg │ │ └── python39_gcp_test.cfg │ └── ruby │ │ ├── flex.cfg │ │ ├── gae.cfg │ │ ├── gcf.cfg │ │ ├── gcp.cfg │ │ ├── ruby25_gae_test.cfg │ │ ├── ruby25_gcp_test.cfg │ │ ├── ruby26_gae_test.cfg │ │ ├── ruby26_gcf_test.cfg │ │ ├── ruby26_gcp_test.cfg │ │ ├── ruby27_gae_test.cfg │ │ ├── ruby27_gcf_test.cfg │ │ ├── ruby27_gcp_test.cfg │ │ ├── ruby30_gae_test.cfg │ │ ├── ruby30_gcf_test.cfg │ │ ├── ruby30_gcp_test.cfg │ │ ├── ruby32_flex_test.cfg │ │ ├── ruby32_gae_test.cfg │ │ ├── ruby32_gcf_test.cfg │ │ ├── ruby32_gcp_test.cfg │ │ ├── ruby33_flex_test.cfg │ │ ├── ruby33_gae_test.cfg │ │ ├── ruby33_gcf_test.cfg │ │ ├── ruby33_gcp_test.cfg │ │ ├── ruby34_flex_test.cfg │ │ ├── ruby34_gae_test.cfg │ │ ├── ruby34_gcf_test.cfg │ │ └── ruby34_gcp_test.cfg └── scripts │ └── presubmit.sh ├── licenses ├── BUILD.bazel ├── buildpacks │ └── licenses.yaml └── lifecycle-v0.20.5 │ └── licenses.yaml ├── pkg ├── appengine │ ├── BUILD.bazel │ ├── appengine.go │ └── appengine_test.go ├── appstart │ ├── BUILD.bazel │ └── appstart.go ├── appyaml │ ├── BUILD.bazel │ ├── appyaml.go │ └── appyaml_test.go ├── ar │ ├── BUILD.bazel │ ├── ar.go │ └── ar_test.go ├── buildererror │ ├── BUILD.bazel │ ├── error.go │ ├── error_test.go │ ├── status.go │ └── status_test.go ├── buildermetadata │ ├── BUILD.bazel │ ├── buildermetadata.go │ └── buildermetadata_test.go ├── buildermetrics │ ├── BUILD.bazel │ ├── buildermetrics.go │ ├── buildermetrics_test.go │ ├── counter.go │ ├── counter_test.go │ ├── descriptor.go │ ├── descriptor_test.go │ ├── descriptors.go │ ├── descriptors_test.go │ ├── floatdp.go │ ├── floatdp_test.go │ ├── legacymetric.go │ ├── legacymetric_test.go │ ├── metricfield.go │ └── metricfield_test.go ├── builderoutput │ ├── BUILD.bazel │ ├── builderoutput.go │ └── builderoutput_test.go ├── cache │ ├── BUILD.bazel │ ├── cache.go │ └── cache_test.go ├── clearsource │ ├── BUILD.bazel │ ├── clearsource.go │ └── clearsource_test.go ├── cloudfunctions │ ├── BUILD.bazel │ ├── cloudfunctions.go │ ├── cloudfunctions_test.go │ ├── env.go │ └── labels.go ├── commonbuildpacks │ ├── BUILD.bazel │ └── commonbuildpacks.go ├── dart │ ├── BUILD.bazel │ ├── dart.go │ ├── dart_test.go │ ├── flutter.go │ └── flutter_test.go ├── devmode │ ├── BUILD.bazel │ ├── devmode.go │ ├── devmode_test.go │ ├── go.go │ ├── java.go │ └── nodejs.go ├── dotnet │ ├── BUILD.bazel │ ├── dotnet.go │ ├── dotnet_test.go │ └── testdata │ │ ├── global.json │ │ └── runtimeconfig │ │ ├── multipleRtCfg │ │ ├── my.runtimeconfig.json │ │ └── my.second.runtimeconfig.json │ │ ├── nestedRtCfg │ │ └── singleRtCfg │ │ │ └── another.runtimeconfig.json │ │ ├── nonAspRtCfg │ │ └── my.runtimeconfig.json │ │ └── singleRtCfg │ │ └── my.runtimeconfig.json ├── env │ ├── BUILD.bazel │ ├── env.go │ └── env_test.go ├── fetch │ ├── BUILD.bazel │ ├── fetch.go │ ├── fetch_test.go │ └── testdata │ │ ├── test.json │ │ └── test.tar.gz ├── fileutil │ ├── BUILD.bazel │ ├── fileutil.go │ ├── fileutil_test.go │ └── testdata │ │ └── path_with_subdir │ │ ├── function.txt │ │ └── subdir │ │ └── example.com │ │ └── htmlreturn │ │ ├── go.mod │ │ └── htmlreturn.go ├── firebase │ ├── apphostingschema │ │ ├── BUILD.bazel │ │ ├── apphostingschema.go │ │ ├── apphostingschema_test.go │ │ ├── testdata │ │ │ ├── apphosting.empty.yaml │ │ │ ├── apphosting.staging.yaml │ │ │ ├── apphosting_invalid_vpc_connector_and_network_interfaces.yaml │ │ │ ├── apphosting_invalid_vpc_egress.yaml │ │ │ ├── apphosting_invalid_vpc_no_network.yaml │ │ │ ├── apphosting_invalidenv_availability.yaml │ │ │ ├── apphosting_invalidenv_valuesecret.yaml │ │ │ ├── apphosting_invalidrunconfig.yaml │ │ │ ├── apphosting_missingenv.yaml │ │ │ ├── apphosting_valid.yaml │ │ │ └── apphosting_valid_vpc_connector.yaml │ │ ├── vpcaccess.go │ │ └── vpcaccess_test.go │ ├── bundleschema │ │ ├── BUILD.bazel │ │ ├── bundleschema.go │ │ ├── bundleschema_test.go │ │ └── testdata │ │ │ ├── bundle_empty.yaml │ │ │ ├── bundle_invalid_md.yaml │ │ │ ├── bundle_invalidenv_availability.yaml │ │ │ ├── bundle_invalidenv_secret.yaml │ │ │ ├── bundle_invalidenv_value.yaml │ │ │ └── bundle_valid.yaml │ ├── envvars │ │ ├── BUILD.bazel │ │ ├── envvars.go │ │ └── envvars_test.go │ ├── faherror │ │ ├── BUILD.bazel │ │ └── faherror.go │ ├── preparer │ │ ├── BUILD.bazel │ │ ├── preparer.go │ │ ├── preparer_test.go │ │ └── testdata │ │ │ ├── apphosting.staging.yaml │ │ │ ├── apphosting.vpc-connector-id.yaml │ │ │ ├── apphosting.vpc-connector-name.yaml │ │ │ ├── apphosting.vpc-network-id.yaml │ │ │ ├── apphosting.vpc-network-name.yaml │ │ │ └── apphosting.yaml │ ├── publisher │ │ ├── BUILD.bazel │ │ ├── publisher.go │ │ ├── publisher_test.go │ │ └── testdata │ │ │ ├── apphosting.yaml │ │ │ ├── bundle.yaml │ │ │ └── env │ ├── secrets │ │ ├── BUILD.bazel │ │ ├── secrets.go │ │ └── secrets_test.go │ └── util │ │ ├── BUILD.bazel │ │ ├── filesystem │ │ ├── BUILD.bazel │ │ ├── filesystem.go │ │ └── filesystem_test.go │ │ ├── util.go │ │ └── util_test.go ├── flex │ ├── BUILD.bazel │ ├── nginx.go │ ├── supervisor.go │ └── supervisor_test.go ├── gcpbuildpack │ ├── BUILD.bazel │ ├── builderoutput.go │ ├── builderoutput_test.go │ ├── detect.go │ ├── detect_test.go │ ├── env.go │ ├── exec.go │ ├── exec_test.go │ ├── exit.go │ ├── filepath.go │ ├── gcpbuildpack.go │ ├── gcpbuildpack_test.go │ ├── ioutil.go │ ├── layer.go │ ├── layer_test.go │ ├── os.go │ ├── os_test.go │ ├── span.go │ └── span_test.go ├── golang │ ├── BUILD.bazel │ ├── golang.go │ ├── golang_test.go │ └── testdata │ │ └── gopath_layer │ │ └── simple_gomod │ │ └── go.mod ├── java │ ├── BUILD.bazel │ ├── appenginewebxml.go │ ├── appenginewebxml_test.go │ ├── gradle.go │ ├── gradle_test.go │ ├── java.go │ ├── java_test.go │ ├── maven.go │ ├── maven_test.go │ └── testdata │ │ ├── appengine-web.xml │ │ ├── empty_file.xml │ │ ├── empty_project.xml │ │ ├── extra_config_appengine-web.xml │ │ ├── invalid_project.xml │ │ ├── jetty_property_appengine-web.xml │ │ ├── minimal_appengine-web.xml │ │ └── simple_project.xml ├── nginx │ ├── BUILD.bazel │ └── nginx.go ├── nodejs │ ├── BUILD.bazel │ ├── angular.go │ ├── angular_test.go │ ├── nextjs.go │ ├── nextjs_test.go │ ├── nodejs.go │ ├── nodejs_test.go │ ├── npm.go │ ├── npm_test.go │ ├── nuxt.go │ ├── nuxt_test.go │ ├── nx.go │ ├── nx_test.go │ ├── pnpm.go │ ├── pnpm_test.go │ ├── registry.go │ ├── registry_test.go │ ├── sveltekit.go │ ├── sveltekit_test.go │ ├── testdata │ │ ├── dummy-yarn.tar.gz │ │ ├── lock-files │ │ │ ├── angular-package-lock.json │ │ │ ├── angular-v6-pnpm-lock.yaml │ │ │ ├── angular-v9-pnpm-lock.yaml │ │ │ ├── berry-yarn.lock │ │ │ ├── classic-yarn.lock │ │ │ ├── nextjs-package-lock.json │ │ │ ├── nextjs-v6-pnpm-lock.yaml │ │ │ └── nextjs-v9-pnpm-lock.yaml │ │ ├── test-read-node-deps-nested │ │ │ ├── package-a │ │ │ │ └── package.json │ │ │ ├── package-lock.json │ │ │ └── package.json │ │ ├── test-read-node-deps │ │ │ ├── package-lock.json │ │ │ └── package.json │ │ ├── test-read-nx-project │ │ │ ├── apps │ │ │ │ └── nx-app │ │ │ │ │ └── project.json │ │ │ └── nx.json │ │ ├── test-read-package │ │ │ └── package.json │ │ └── test-read-turbo-project │ │ │ └── turbo.json │ ├── turbo.go │ ├── turbo_test.go │ ├── yarn.go │ └── yarn_test.go ├── php │ ├── BUILD.bazel │ ├── php.go │ └── php_test.go ├── python │ ├── BUILD.bazel │ ├── dependencies.go │ ├── dependencies_test.go │ ├── pyproject.go │ ├── pyproject_test.go │ ├── python.go │ ├── python_test.go │ ├── requirements.go │ └── requirements_test.go ├── ruby │ ├── BUILD.bazel │ ├── entrypoint.go │ ├── entrypoint_test.go │ ├── gemfile.go │ ├── gemfile_test.go │ ├── ruby.go │ └── ruby_test.go ├── runtime │ ├── BUILD.bazel │ ├── install.go │ ├── install_test.go │ ├── runtime.go │ ├── runtime_test.go │ └── testdata │ │ ├── dummy-dart-sdk.zip │ │ ├── dummy-flutter-sdk.tar.xz │ │ └── dummy-ruby-runtime.tar.gz ├── testdata │ ├── BUILD.bazel │ └── testdata.go ├── version │ ├── BUILD.bazel │ ├── version.go │ └── version_test.go └── webconfig │ ├── BUILD.bazel │ └── webconfig.go ├── stacks ├── firebase_app_hosting_22 │ ├── BUILD.bazel │ ├── README.md │ ├── build.Dockerfile │ ├── build_structure_test.yaml │ ├── run.Dockerfile │ └── run_structure_test.yaml ├── google_22 │ ├── BUILD.bazel │ ├── README.md │ ├── build-packages.txt │ ├── build.Dockerfile │ ├── build_structure_test.yaml │ ├── run-packages.txt │ ├── run.Dockerfile │ └── run_structure_test.yaml ├── google_24 │ ├── BUILD.bazel │ ├── README.md │ ├── run-packages.txt │ ├── run.Dockerfile │ └── run_structure_test.yaml ├── google_24_full │ ├── BUILD.bazel │ ├── README.md │ ├── build-packages.txt │ ├── build.Dockerfile │ ├── build_structure_test.yaml │ ├── run-packages.txt │ ├── run.Dockerfile │ └── run_structure_test.yaml ├── google_24_universal │ ├── BUILD.bazel │ ├── README.md │ ├── build-packages.txt │ ├── build.Dockerfile │ ├── build_structure_test.yaml │ ├── run-packages.txt │ ├── run.Dockerfile │ └── run_structure_test.yaml ├── google_gae_22 │ ├── BUILD.bazel │ ├── README.md │ ├── build-packages.txt │ ├── build.Dockerfile │ ├── build_structure_test.yaml │ ├── run-packages.txt │ ├── run.Dockerfile │ └── run_structure_test.yaml └── google_min_22 │ ├── BUILD.bazel │ ├── README.md │ ├── run-packages.txt │ ├── run.Dockerfile │ └── run_structure_test.yaml └── tools ├── BUILD.bazel ├── buildpack.toml.template ├── checktools ├── BUILD.bazel ├── main.go └── main_test.go ├── cloudbuild ├── Dockerfile ├── create_builder.yaml ├── create_dev_firebase_builder.yaml ├── create_stacks.yaml └── diff_licenses.yaml ├── create-builder.sh ├── create-buildpackage.sh ├── defs.bzl ├── generate_flatten_flag.sh ├── licenses ├── add.sh ├── diff.sh ├── gather.sh └── yaml.sh └── pull-images.sh /.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/.bazelrc -------------------------------------------------------------------------------- /.gcloudignore: -------------------------------------------------------------------------------- 1 | # Bazel auto-created files. 2 | bazel-* 3 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | bazel-* 2 | .DS_Store 3 | .vscode 4 | .idea -------------------------------------------------------------------------------- /BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/BUILD.bazel -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/SECURITY.md -------------------------------------------------------------------------------- /WORKSPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/WORKSPACE -------------------------------------------------------------------------------- /cmd/config/entrypoint/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/config/entrypoint/BUILD.bazel -------------------------------------------------------------------------------- /cmd/config/entrypoint/lib/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/config/entrypoint/lib/BUILD.bazel -------------------------------------------------------------------------------- /cmd/config/entrypoint/lib/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/config/entrypoint/lib/lib.go -------------------------------------------------------------------------------- /cmd/config/entrypoint/lib/lib_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/config/entrypoint/lib/lib_test.go -------------------------------------------------------------------------------- /cmd/config/entrypoint/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/config/entrypoint/main.go -------------------------------------------------------------------------------- /cmd/config/flex/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/config/flex/BUILD.bazel -------------------------------------------------------------------------------- /cmd/config/flex/lib/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/config/flex/lib/BUILD.bazel -------------------------------------------------------------------------------- /cmd/config/flex/lib/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/config/flex/lib/lib.go -------------------------------------------------------------------------------- /cmd/config/flex/lib/lib_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/config/flex/lib/lib_test.go -------------------------------------------------------------------------------- /cmd/config/flex/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/config/flex/main.go -------------------------------------------------------------------------------- /cmd/cpp/clear_source/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/cpp/clear_source/BUILD.bazel -------------------------------------------------------------------------------- /cmd/cpp/clear_source/lib/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/cpp/clear_source/lib/BUILD.bazel -------------------------------------------------------------------------------- /cmd/cpp/clear_source/lib/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/cpp/clear_source/lib/lib.go -------------------------------------------------------------------------------- /cmd/cpp/clear_source/lib/lib_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/cpp/clear_source/lib/lib_test.go -------------------------------------------------------------------------------- /cmd/cpp/clear_source/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/cpp/clear_source/main.go -------------------------------------------------------------------------------- /cmd/cpp/functions_framework/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/cpp/functions_framework/BUILD.bazel -------------------------------------------------------------------------------- /cmd/cpp/functions_framework/lib/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/cpp/functions_framework/lib/BUILD.bazel -------------------------------------------------------------------------------- /cmd/cpp/functions_framework/lib/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/cpp/functions_framework/lib/lib.go -------------------------------------------------------------------------------- /cmd/cpp/functions_framework/lib/lib_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/cpp/functions_framework/lib/lib_test.go -------------------------------------------------------------------------------- /cmd/cpp/functions_framework/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/cpp/functions_framework/main.go -------------------------------------------------------------------------------- /cmd/dart/compile/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/dart/compile/BUILD.bazel -------------------------------------------------------------------------------- /cmd/dart/compile/lib/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/dart/compile/lib/BUILD.bazel -------------------------------------------------------------------------------- /cmd/dart/compile/lib/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/dart/compile/lib/lib.go -------------------------------------------------------------------------------- /cmd/dart/compile/lib/lib_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/dart/compile/lib/lib_test.go -------------------------------------------------------------------------------- /cmd/dart/compile/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/dart/compile/main.go -------------------------------------------------------------------------------- /cmd/dart/pub/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/dart/pub/BUILD.bazel -------------------------------------------------------------------------------- /cmd/dart/pub/lib/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/dart/pub/lib/BUILD.bazel -------------------------------------------------------------------------------- /cmd/dart/pub/lib/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/dart/pub/lib/lib.go -------------------------------------------------------------------------------- /cmd/dart/pub/lib/lib_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/dart/pub/lib/lib_test.go -------------------------------------------------------------------------------- /cmd/dart/pub/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/dart/pub/main.go -------------------------------------------------------------------------------- /cmd/dart/sdk/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/dart/sdk/BUILD.bazel -------------------------------------------------------------------------------- /cmd/dart/sdk/lib/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/dart/sdk/lib/BUILD.bazel -------------------------------------------------------------------------------- /cmd/dart/sdk/lib/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/dart/sdk/lib/lib.go -------------------------------------------------------------------------------- /cmd/dart/sdk/lib/lib_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/dart/sdk/lib/lib_test.go -------------------------------------------------------------------------------- /cmd/dart/sdk/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/dart/sdk/main.go -------------------------------------------------------------------------------- /cmd/dotnet/appengine/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/dotnet/appengine/BUILD.bazel -------------------------------------------------------------------------------- /cmd/dotnet/appengine/lib/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/dotnet/appengine/lib/BUILD.bazel -------------------------------------------------------------------------------- /cmd/dotnet/appengine/lib/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/dotnet/appengine/lib/lib.go -------------------------------------------------------------------------------- /cmd/dotnet/appengine/lib/lib_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/dotnet/appengine/lib/lib_test.go -------------------------------------------------------------------------------- /cmd/dotnet/appengine/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/dotnet/appengine/main.go -------------------------------------------------------------------------------- /cmd/dotnet/appengine_main/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/dotnet/appengine_main/BUILD.bazel -------------------------------------------------------------------------------- /cmd/dotnet/appengine_main/lib/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/dotnet/appengine_main/lib/BUILD.bazel -------------------------------------------------------------------------------- /cmd/dotnet/appengine_main/lib/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/dotnet/appengine_main/lib/lib.go -------------------------------------------------------------------------------- /cmd/dotnet/appengine_main/lib/lib_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/dotnet/appengine_main/lib/lib_test.go -------------------------------------------------------------------------------- /cmd/dotnet/appengine_main/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/dotnet/appengine_main/main.go -------------------------------------------------------------------------------- /cmd/dotnet/flex/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/dotnet/flex/BUILD.bazel -------------------------------------------------------------------------------- /cmd/dotnet/flex/lib/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/dotnet/flex/lib/BUILD.bazel -------------------------------------------------------------------------------- /cmd/dotnet/flex/lib/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/dotnet/flex/lib/lib.go -------------------------------------------------------------------------------- /cmd/dotnet/flex/lib/lib_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/dotnet/flex/lib/lib_test.go -------------------------------------------------------------------------------- /cmd/dotnet/flex/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/dotnet/flex/main.go -------------------------------------------------------------------------------- /cmd/dotnet/functions_framework/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/dotnet/functions_framework/BUILD.bazel -------------------------------------------------------------------------------- /cmd/dotnet/functions_framework/lib/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/dotnet/functions_framework/lib/lib.go -------------------------------------------------------------------------------- /cmd/dotnet/functions_framework/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/dotnet/functions_framework/main.go -------------------------------------------------------------------------------- /cmd/dotnet/publish/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/dotnet/publish/BUILD.bazel -------------------------------------------------------------------------------- /cmd/dotnet/publish/lib/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/dotnet/publish/lib/BUILD.bazel -------------------------------------------------------------------------------- /cmd/dotnet/publish/lib/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/dotnet/publish/lib/lib.go -------------------------------------------------------------------------------- /cmd/dotnet/publish/lib/lib_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/dotnet/publish/lib/lib_test.go -------------------------------------------------------------------------------- /cmd/dotnet/publish/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/dotnet/publish/main.go -------------------------------------------------------------------------------- /cmd/dotnet/runtime/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/dotnet/runtime/BUILD.bazel -------------------------------------------------------------------------------- /cmd/dotnet/runtime/lib/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/dotnet/runtime/lib/BUILD.bazel -------------------------------------------------------------------------------- /cmd/dotnet/runtime/lib/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/dotnet/runtime/lib/lib.go -------------------------------------------------------------------------------- /cmd/dotnet/runtime/lib/lib_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/dotnet/runtime/lib/lib_test.go -------------------------------------------------------------------------------- /cmd/dotnet/runtime/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/dotnet/runtime/main.go -------------------------------------------------------------------------------- /cmd/dotnet/sdk/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/dotnet/sdk/BUILD.bazel -------------------------------------------------------------------------------- /cmd/dotnet/sdk/lib/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/dotnet/sdk/lib/BUILD.bazel -------------------------------------------------------------------------------- /cmd/dotnet/sdk/lib/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/dotnet/sdk/lib/lib.go -------------------------------------------------------------------------------- /cmd/dotnet/sdk/lib/lib_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/dotnet/sdk/lib/lib_test.go -------------------------------------------------------------------------------- /cmd/dotnet/sdk/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/dotnet/sdk/main.go -------------------------------------------------------------------------------- /cmd/firebase/preparer/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/firebase/preparer/BUILD.bazel -------------------------------------------------------------------------------- /cmd/firebase/preparer/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/firebase/preparer/main.go -------------------------------------------------------------------------------- /cmd/firebase/publisher/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/firebase/publisher/BUILD.bazel -------------------------------------------------------------------------------- /cmd/firebase/publisher/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/firebase/publisher/main.go -------------------------------------------------------------------------------- /cmd/go/appengine/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/go/appengine/BUILD.bazel -------------------------------------------------------------------------------- /cmd/go/appengine/lib/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/go/appengine/lib/BUILD.bazel -------------------------------------------------------------------------------- /cmd/go/appengine/lib/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/go/appengine/lib/lib.go -------------------------------------------------------------------------------- /cmd/go/appengine/lib/lib_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/go/appengine/lib/lib_test.go -------------------------------------------------------------------------------- /cmd/go/appengine/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/go/appengine/main.go -------------------------------------------------------------------------------- /cmd/go/appengine_gomod/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/go/appengine_gomod/BUILD.bazel -------------------------------------------------------------------------------- /cmd/go/appengine_gomod/lib/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/go/appengine_gomod/lib/BUILD.bazel -------------------------------------------------------------------------------- /cmd/go/appengine_gomod/lib/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/go/appengine_gomod/lib/lib.go -------------------------------------------------------------------------------- /cmd/go/appengine_gomod/lib/lib_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/go/appengine_gomod/lib/lib_test.go -------------------------------------------------------------------------------- /cmd/go/appengine_gomod/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/go/appengine_gomod/main.go -------------------------------------------------------------------------------- /cmd/go/appengine_gopath/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/go/appengine_gopath/BUILD.bazel -------------------------------------------------------------------------------- /cmd/go/appengine_gopath/lib/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/go/appengine_gopath/lib/BUILD.bazel -------------------------------------------------------------------------------- /cmd/go/appengine_gopath/lib/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/go/appengine_gopath/lib/lib.go -------------------------------------------------------------------------------- /cmd/go/appengine_gopath/lib/lib_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/go/appengine_gopath/lib/lib_test.go -------------------------------------------------------------------------------- /cmd/go/appengine_gopath/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/go/appengine_gopath/main.go -------------------------------------------------------------------------------- /cmd/go/build/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/go/build/BUILD.bazel -------------------------------------------------------------------------------- /cmd/go/build/lib/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/go/build/lib/BUILD.bazel -------------------------------------------------------------------------------- /cmd/go/build/lib/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/go/build/lib/lib.go -------------------------------------------------------------------------------- /cmd/go/build/lib/lib_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/go/build/lib/lib_test.go -------------------------------------------------------------------------------- /cmd/go/build/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/go/build/main.go -------------------------------------------------------------------------------- /cmd/go/clear_source/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/go/clear_source/BUILD.bazel -------------------------------------------------------------------------------- /cmd/go/clear_source/lib/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/go/clear_source/lib/BUILD.bazel -------------------------------------------------------------------------------- /cmd/go/clear_source/lib/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/go/clear_source/lib/lib.go -------------------------------------------------------------------------------- /cmd/go/clear_source/lib/lib_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/go/clear_source/lib/lib_test.go -------------------------------------------------------------------------------- /cmd/go/clear_source/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/go/clear_source/main.go -------------------------------------------------------------------------------- /cmd/go/flex_gomod/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/go/flex_gomod/BUILD.bazel -------------------------------------------------------------------------------- /cmd/go/flex_gomod/lib/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/go/flex_gomod/lib/BUILD.bazel -------------------------------------------------------------------------------- /cmd/go/flex_gomod/lib/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/go/flex_gomod/lib/lib.go -------------------------------------------------------------------------------- /cmd/go/flex_gomod/lib/lib_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/go/flex_gomod/lib/lib_test.go -------------------------------------------------------------------------------- /cmd/go/flex_gomod/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/go/flex_gomod/main.go -------------------------------------------------------------------------------- /cmd/go/functions_framework/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/go/functions_framework/BUILD.bazel -------------------------------------------------------------------------------- /cmd/go/functions_framework/lib/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/go/functions_framework/lib/BUILD.bazel -------------------------------------------------------------------------------- /cmd/go/functions_framework/lib/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/go/functions_framework/lib/lib.go -------------------------------------------------------------------------------- /cmd/go/functions_framework/lib/lib_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/go/functions_framework/lib/lib_test.go -------------------------------------------------------------------------------- /cmd/go/functions_framework/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/go/functions_framework/main.go -------------------------------------------------------------------------------- /cmd/go/gomod/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/go/gomod/BUILD.bazel -------------------------------------------------------------------------------- /cmd/go/gomod/lib/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/go/gomod/lib/BUILD.bazel -------------------------------------------------------------------------------- /cmd/go/gomod/lib/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/go/gomod/lib/lib.go -------------------------------------------------------------------------------- /cmd/go/gomod/lib/lib_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/go/gomod/lib/lib_test.go -------------------------------------------------------------------------------- /cmd/go/gomod/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/go/gomod/main.go -------------------------------------------------------------------------------- /cmd/go/gopath/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/go/gopath/BUILD.bazel -------------------------------------------------------------------------------- /cmd/go/gopath/lib/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/go/gopath/lib/BUILD.bazel -------------------------------------------------------------------------------- /cmd/go/gopath/lib/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/go/gopath/lib/lib.go -------------------------------------------------------------------------------- /cmd/go/gopath/lib/lib_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/go/gopath/lib/lib_test.go -------------------------------------------------------------------------------- /cmd/go/gopath/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/go/gopath/main.go -------------------------------------------------------------------------------- /cmd/go/legacy_worker/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/go/legacy_worker/BUILD.bazel -------------------------------------------------------------------------------- /cmd/go/legacy_worker/lib/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/go/legacy_worker/lib/BUILD.bazel -------------------------------------------------------------------------------- /cmd/go/legacy_worker/lib/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/go/legacy_worker/lib/lib.go -------------------------------------------------------------------------------- /cmd/go/legacy_worker/lib/lib_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/go/legacy_worker/lib/lib_test.go -------------------------------------------------------------------------------- /cmd/go/legacy_worker/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/go/legacy_worker/main.go -------------------------------------------------------------------------------- /cmd/go/runtime/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/go/runtime/BUILD.bazel -------------------------------------------------------------------------------- /cmd/go/runtime/lib/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/go/runtime/lib/BUILD.bazel -------------------------------------------------------------------------------- /cmd/go/runtime/lib/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/go/runtime/lib/lib.go -------------------------------------------------------------------------------- /cmd/go/runtime/lib/lib_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/go/runtime/lib/lib_test.go -------------------------------------------------------------------------------- /cmd/go/runtime/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/go/runtime/main.go -------------------------------------------------------------------------------- /cmd/java/appengine/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/java/appengine/BUILD.bazel -------------------------------------------------------------------------------- /cmd/java/appengine/lib/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/java/appengine/lib/BUILD.bazel -------------------------------------------------------------------------------- /cmd/java/appengine/lib/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/java/appengine/lib/lib.go -------------------------------------------------------------------------------- /cmd/java/appengine/lib/lib_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/java/appengine/lib/lib_test.go -------------------------------------------------------------------------------- /cmd/java/appengine/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/java/appengine/main.go -------------------------------------------------------------------------------- /cmd/java/clear_source/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/java/clear_source/BUILD.bazel -------------------------------------------------------------------------------- /cmd/java/clear_source/lib/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/java/clear_source/lib/BUILD.bazel -------------------------------------------------------------------------------- /cmd/java/clear_source/lib/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/java/clear_source/lib/lib.go -------------------------------------------------------------------------------- /cmd/java/clear_source/lib/lib_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/java/clear_source/lib/lib_test.go -------------------------------------------------------------------------------- /cmd/java/clear_source/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/java/clear_source/main.go -------------------------------------------------------------------------------- /cmd/java/entrypoint/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/java/entrypoint/BUILD.bazel -------------------------------------------------------------------------------- /cmd/java/entrypoint/lib/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/java/entrypoint/lib/BUILD.bazel -------------------------------------------------------------------------------- /cmd/java/entrypoint/lib/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/java/entrypoint/lib/lib.go -------------------------------------------------------------------------------- /cmd/java/entrypoint/lib/lib_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/java/entrypoint/lib/lib_test.go -------------------------------------------------------------------------------- /cmd/java/entrypoint/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/java/entrypoint/main.go -------------------------------------------------------------------------------- /cmd/java/exploded_jar/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/java/exploded_jar/BUILD.bazel -------------------------------------------------------------------------------- /cmd/java/exploded_jar/lib/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/java/exploded_jar/lib/BUILD.bazel -------------------------------------------------------------------------------- /cmd/java/exploded_jar/lib/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/java/exploded_jar/lib/lib.go -------------------------------------------------------------------------------- /cmd/java/exploded_jar/lib/lib_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/java/exploded_jar/lib/lib_test.go -------------------------------------------------------------------------------- /cmd/java/exploded_jar/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/java/exploded_jar/main.go -------------------------------------------------------------------------------- /cmd/java/functions_framework/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/java/functions_framework/BUILD.bazel -------------------------------------------------------------------------------- /cmd/java/functions_framework/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/java/functions_framework/launch.sh -------------------------------------------------------------------------------- /cmd/java/functions_framework/lib/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/java/functions_framework/lib/lib.go -------------------------------------------------------------------------------- /cmd/java/functions_framework/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/java/functions_framework/main.go -------------------------------------------------------------------------------- /cmd/java/graalvm/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/java/graalvm/BUILD.bazel -------------------------------------------------------------------------------- /cmd/java/graalvm/lib/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/java/graalvm/lib/BUILD.bazel -------------------------------------------------------------------------------- /cmd/java/graalvm/lib/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/java/graalvm/lib/lib.go -------------------------------------------------------------------------------- /cmd/java/graalvm/lib/lib_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/java/graalvm/lib/lib_test.go -------------------------------------------------------------------------------- /cmd/java/graalvm/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/java/graalvm/main.go -------------------------------------------------------------------------------- /cmd/java/gradle/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/java/gradle/BUILD.bazel -------------------------------------------------------------------------------- /cmd/java/gradle/lib/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/java/gradle/lib/BUILD.bazel -------------------------------------------------------------------------------- /cmd/java/gradle/lib/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/java/gradle/lib/lib.go -------------------------------------------------------------------------------- /cmd/java/gradle/lib/lib_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/java/gradle/lib/lib_test.go -------------------------------------------------------------------------------- /cmd/java/gradle/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/java/gradle/main.go -------------------------------------------------------------------------------- /cmd/java/maven/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/java/maven/BUILD.bazel -------------------------------------------------------------------------------- /cmd/java/maven/lib/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/java/maven/lib/BUILD.bazel -------------------------------------------------------------------------------- /cmd/java/maven/lib/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/java/maven/lib/lib.go -------------------------------------------------------------------------------- /cmd/java/maven/lib/lib_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/java/maven/lib/lib_test.go -------------------------------------------------------------------------------- /cmd/java/maven/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/java/maven/main.go -------------------------------------------------------------------------------- /cmd/java/native_image/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/java/native_image/BUILD.bazel -------------------------------------------------------------------------------- /cmd/java/native_image/lib/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/java/native_image/lib/BUILD.bazel -------------------------------------------------------------------------------- /cmd/java/native_image/lib/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/java/native_image/lib/lib.go -------------------------------------------------------------------------------- /cmd/java/native_image/lib/lib_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/java/native_image/lib/lib_test.go -------------------------------------------------------------------------------- /cmd/java/native_image/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/java/native_image/main.go -------------------------------------------------------------------------------- /cmd/java/runtime/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/java/runtime/BUILD.bazel -------------------------------------------------------------------------------- /cmd/java/runtime/lib/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/java/runtime/lib/BUILD.bazel -------------------------------------------------------------------------------- /cmd/java/runtime/lib/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/java/runtime/lib/lib.go -------------------------------------------------------------------------------- /cmd/java/runtime/lib/lib_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/java/runtime/lib/lib_test.go -------------------------------------------------------------------------------- /cmd/java/runtime/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/java/runtime/main.go -------------------------------------------------------------------------------- /cmd/java/spring_boot/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/java/spring_boot/BUILD.bazel -------------------------------------------------------------------------------- /cmd/java/spring_boot/lib/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/java/spring_boot/lib/BUILD.bazel -------------------------------------------------------------------------------- /cmd/java/spring_boot/lib/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/java/spring_boot/lib/lib.go -------------------------------------------------------------------------------- /cmd/java/spring_boot/lib/lib_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/java/spring_boot/lib/lib_test.go -------------------------------------------------------------------------------- /cmd/java/spring_boot/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/java/spring_boot/main.go -------------------------------------------------------------------------------- /cmd/nodejs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/nodejs/README.md -------------------------------------------------------------------------------- /cmd/nodejs/appengine/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/nodejs/appengine/BUILD.bazel -------------------------------------------------------------------------------- /cmd/nodejs/appengine/lib/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/nodejs/appengine/lib/BUILD.bazel -------------------------------------------------------------------------------- /cmd/nodejs/appengine/lib/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/nodejs/appengine/lib/lib.go -------------------------------------------------------------------------------- /cmd/nodejs/appengine/lib/lib_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/nodejs/appengine/lib/lib_test.go -------------------------------------------------------------------------------- /cmd/nodejs/appengine/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/nodejs/appengine/main.go -------------------------------------------------------------------------------- /cmd/nodejs/firebaseangular/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/nodejs/firebaseangular/BUILD.bazel -------------------------------------------------------------------------------- /cmd/nodejs/firebaseangular/lib/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/nodejs/firebaseangular/lib/BUILD.bazel -------------------------------------------------------------------------------- /cmd/nodejs/firebaseangular/lib/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/nodejs/firebaseangular/lib/lib.go -------------------------------------------------------------------------------- /cmd/nodejs/firebaseangular/lib/lib_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/nodejs/firebaseangular/lib/lib_test.go -------------------------------------------------------------------------------- /cmd/nodejs/firebaseangular/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/nodejs/firebaseangular/main.go -------------------------------------------------------------------------------- /cmd/nodejs/firebasebundle/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/nodejs/firebasebundle/BUILD.bazel -------------------------------------------------------------------------------- /cmd/nodejs/firebasebundle/lib/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/nodejs/firebasebundle/lib/BUILD.bazel -------------------------------------------------------------------------------- /cmd/nodejs/firebasebundle/lib/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/nodejs/firebasebundle/lib/lib.go -------------------------------------------------------------------------------- /cmd/nodejs/firebasebundle/lib/lib_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/nodejs/firebasebundle/lib/lib_test.go -------------------------------------------------------------------------------- /cmd/nodejs/firebasebundle/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/nodejs/firebasebundle/main.go -------------------------------------------------------------------------------- /cmd/nodejs/firebasenextjs/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/nodejs/firebasenextjs/BUILD.bazel -------------------------------------------------------------------------------- /cmd/nodejs/firebasenextjs/lib/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/nodejs/firebasenextjs/lib/BUILD.bazel -------------------------------------------------------------------------------- /cmd/nodejs/firebasenextjs/lib/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/nodejs/firebasenextjs/lib/lib.go -------------------------------------------------------------------------------- /cmd/nodejs/firebasenextjs/lib/lib_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/nodejs/firebasenextjs/lib/lib_test.go -------------------------------------------------------------------------------- /cmd/nodejs/firebasenextjs/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/nodejs/firebasenextjs/main.go -------------------------------------------------------------------------------- /cmd/nodejs/firebasenx/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/nodejs/firebasenx/BUILD.bazel -------------------------------------------------------------------------------- /cmd/nodejs/firebasenx/lib/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/nodejs/firebasenx/lib/BUILD.bazel -------------------------------------------------------------------------------- /cmd/nodejs/firebasenx/lib/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/nodejs/firebasenx/lib/lib.go -------------------------------------------------------------------------------- /cmd/nodejs/firebasenx/lib/lib_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/nodejs/firebasenx/lib/lib_test.go -------------------------------------------------------------------------------- /cmd/nodejs/firebasenx/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/nodejs/firebasenx/main.go -------------------------------------------------------------------------------- /cmd/nodejs/functions_framework/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/nodejs/functions_framework/BUILD.bazel -------------------------------------------------------------------------------- /cmd/nodejs/functions_framework/lib/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/nodejs/functions_framework/lib/lib.go -------------------------------------------------------------------------------- /cmd/nodejs/functions_framework/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/nodejs/functions_framework/main.go -------------------------------------------------------------------------------- /cmd/nodejs/legacy_worker/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/nodejs/legacy_worker/BUILD.bazel -------------------------------------------------------------------------------- /cmd/nodejs/legacy_worker/lib/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/nodejs/legacy_worker/lib/BUILD.bazel -------------------------------------------------------------------------------- /cmd/nodejs/legacy_worker/lib/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/nodejs/legacy_worker/lib/lib.go -------------------------------------------------------------------------------- /cmd/nodejs/legacy_worker/lib/lib_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/nodejs/legacy_worker/lib/lib_test.go -------------------------------------------------------------------------------- /cmd/nodejs/legacy_worker/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/nodejs/legacy_worker/main.go -------------------------------------------------------------------------------- /cmd/nodejs/npm/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/nodejs/npm/BUILD.bazel -------------------------------------------------------------------------------- /cmd/nodejs/npm/lib/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/nodejs/npm/lib/BUILD.bazel -------------------------------------------------------------------------------- /cmd/nodejs/npm/lib/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/nodejs/npm/lib/lib.go -------------------------------------------------------------------------------- /cmd/nodejs/npm/lib/lib_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/nodejs/npm/lib/lib_test.go -------------------------------------------------------------------------------- /cmd/nodejs/npm/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/nodejs/npm/main.go -------------------------------------------------------------------------------- /cmd/nodejs/pnpm/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/nodejs/pnpm/BUILD.bazel -------------------------------------------------------------------------------- /cmd/nodejs/pnpm/lib/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/nodejs/pnpm/lib/BUILD.bazel -------------------------------------------------------------------------------- /cmd/nodejs/pnpm/lib/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/nodejs/pnpm/lib/lib.go -------------------------------------------------------------------------------- /cmd/nodejs/pnpm/lib/lib_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/nodejs/pnpm/lib/lib_test.go -------------------------------------------------------------------------------- /cmd/nodejs/pnpm/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/nodejs/pnpm/main.go -------------------------------------------------------------------------------- /cmd/nodejs/runtime/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/nodejs/runtime/BUILD.bazel -------------------------------------------------------------------------------- /cmd/nodejs/runtime/exec/heapsize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/nodejs/runtime/exec/heapsize.sh -------------------------------------------------------------------------------- /cmd/nodejs/runtime/lib/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/nodejs/runtime/lib/BUILD.bazel -------------------------------------------------------------------------------- /cmd/nodejs/runtime/lib/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/nodejs/runtime/lib/lib.go -------------------------------------------------------------------------------- /cmd/nodejs/runtime/lib/lib_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/nodejs/runtime/lib/lib_test.go -------------------------------------------------------------------------------- /cmd/nodejs/runtime/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/nodejs/runtime/main.go -------------------------------------------------------------------------------- /cmd/nodejs/turborepo/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/nodejs/turborepo/BUILD.bazel -------------------------------------------------------------------------------- /cmd/nodejs/turborepo/lib/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/nodejs/turborepo/lib/BUILD.bazel -------------------------------------------------------------------------------- /cmd/nodejs/turborepo/lib/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/nodejs/turborepo/lib/lib.go -------------------------------------------------------------------------------- /cmd/nodejs/turborepo/lib/lib_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/nodejs/turborepo/lib/lib_test.go -------------------------------------------------------------------------------- /cmd/nodejs/turborepo/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/nodejs/turborepo/main.go -------------------------------------------------------------------------------- /cmd/nodejs/yarn/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/nodejs/yarn/BUILD.bazel -------------------------------------------------------------------------------- /cmd/nodejs/yarn/lib/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/nodejs/yarn/lib/BUILD.bazel -------------------------------------------------------------------------------- /cmd/nodejs/yarn/lib/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/nodejs/yarn/lib/lib.go -------------------------------------------------------------------------------- /cmd/nodejs/yarn/lib/lib_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/nodejs/yarn/lib/lib_test.go -------------------------------------------------------------------------------- /cmd/nodejs/yarn/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/nodejs/yarn/main.go -------------------------------------------------------------------------------- /cmd/php/appengine/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/php/appengine/BUILD.bazel -------------------------------------------------------------------------------- /cmd/php/appengine/lib/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/php/appengine/lib/BUILD.bazel -------------------------------------------------------------------------------- /cmd/php/appengine/lib/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/php/appengine/lib/lib.go -------------------------------------------------------------------------------- /cmd/php/appengine/lib/lib_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/php/appengine/lib/lib_test.go -------------------------------------------------------------------------------- /cmd/php/appengine/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/php/appengine/main.go -------------------------------------------------------------------------------- /cmd/php/cloudfunctions/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/php/cloudfunctions/BUILD.bazel -------------------------------------------------------------------------------- /cmd/php/cloudfunctions/lib/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/php/cloudfunctions/lib/BUILD.bazel -------------------------------------------------------------------------------- /cmd/php/cloudfunctions/lib/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/php/cloudfunctions/lib/lib.go -------------------------------------------------------------------------------- /cmd/php/cloudfunctions/lib/lib_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/php/cloudfunctions/lib/lib_test.go -------------------------------------------------------------------------------- /cmd/php/cloudfunctions/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/php/cloudfunctions/main.go -------------------------------------------------------------------------------- /cmd/php/composer/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/php/composer/BUILD.bazel -------------------------------------------------------------------------------- /cmd/php/composer/lib/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/php/composer/lib/BUILD.bazel -------------------------------------------------------------------------------- /cmd/php/composer/lib/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/php/composer/lib/lib.go -------------------------------------------------------------------------------- /cmd/php/composer/lib/lib_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/php/composer/lib/lib_test.go -------------------------------------------------------------------------------- /cmd/php/composer/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/php/composer/main.go -------------------------------------------------------------------------------- /cmd/php/composer_gcp_build/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/php/composer_gcp_build/BUILD.bazel -------------------------------------------------------------------------------- /cmd/php/composer_gcp_build/lib/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/php/composer_gcp_build/lib/BUILD.bazel -------------------------------------------------------------------------------- /cmd/php/composer_gcp_build/lib/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/php/composer_gcp_build/lib/lib.go -------------------------------------------------------------------------------- /cmd/php/composer_gcp_build/lib/lib_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/php/composer_gcp_build/lib/lib_test.go -------------------------------------------------------------------------------- /cmd/php/composer_gcp_build/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/php/composer_gcp_build/main.go -------------------------------------------------------------------------------- /cmd/php/composer_install/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/php/composer_install/BUILD.bazel -------------------------------------------------------------------------------- /cmd/php/composer_install/lib/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/php/composer_install/lib/BUILD.bazel -------------------------------------------------------------------------------- /cmd/php/composer_install/lib/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/php/composer_install/lib/lib.go -------------------------------------------------------------------------------- /cmd/php/composer_install/lib/lib_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/php/composer_install/lib/lib_test.go -------------------------------------------------------------------------------- /cmd/php/composer_install/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/php/composer_install/main.go -------------------------------------------------------------------------------- /cmd/php/functions_framework/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/php/functions_framework/BUILD.bazel -------------------------------------------------------------------------------- /cmd/php/functions_framework/lib/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/php/functions_framework/lib/BUILD.bazel -------------------------------------------------------------------------------- /cmd/php/functions_framework/lib/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/php/functions_framework/lib/lib.go -------------------------------------------------------------------------------- /cmd/php/functions_framework/lib/lib_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/php/functions_framework/lib/lib_test.go -------------------------------------------------------------------------------- /cmd/php/functions_framework/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/php/functions_framework/main.go -------------------------------------------------------------------------------- /cmd/php/runtime/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/php/runtime/BUILD.bazel -------------------------------------------------------------------------------- /cmd/php/runtime/lib/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/php/runtime/lib/BUILD.bazel -------------------------------------------------------------------------------- /cmd/php/runtime/lib/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/php/runtime/lib/lib.go -------------------------------------------------------------------------------- /cmd/php/runtime/lib/lib_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/php/runtime/lib/lib_test.go -------------------------------------------------------------------------------- /cmd/php/runtime/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/php/runtime/main.go -------------------------------------------------------------------------------- /cmd/php/supervisor/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/php/supervisor/BUILD.bazel -------------------------------------------------------------------------------- /cmd/php/supervisor/lib/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/php/supervisor/lib/BUILD.bazel -------------------------------------------------------------------------------- /cmd/php/supervisor/lib/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/php/supervisor/lib/lib.go -------------------------------------------------------------------------------- /cmd/php/supervisor/lib/lib_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/php/supervisor/lib/lib_test.go -------------------------------------------------------------------------------- /cmd/php/supervisor/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/php/supervisor/main.go -------------------------------------------------------------------------------- /cmd/php/webconfig/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/php/webconfig/BUILD.bazel -------------------------------------------------------------------------------- /cmd/php/webconfig/lib/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/php/webconfig/lib/BUILD.bazel -------------------------------------------------------------------------------- /cmd/php/webconfig/lib/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/php/webconfig/lib/lib.go -------------------------------------------------------------------------------- /cmd/php/webconfig/lib/lib_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/php/webconfig/lib/lib_test.go -------------------------------------------------------------------------------- /cmd/php/webconfig/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/php/webconfig/main.go -------------------------------------------------------------------------------- /cmd/python/appengine/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/python/appengine/BUILD.bazel -------------------------------------------------------------------------------- /cmd/python/appengine/lib/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/python/appengine/lib/BUILD.bazel -------------------------------------------------------------------------------- /cmd/python/appengine/lib/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/python/appengine/lib/lib.go -------------------------------------------------------------------------------- /cmd/python/appengine/lib/lib_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/python/appengine/lib/lib_test.go -------------------------------------------------------------------------------- /cmd/python/appengine/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/python/appengine/main.go -------------------------------------------------------------------------------- /cmd/python/functions_framework/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/python/functions_framework/BUILD.bazel -------------------------------------------------------------------------------- /cmd/python/functions_framework/lib/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/python/functions_framework/lib/lib.go -------------------------------------------------------------------------------- /cmd/python/functions_framework/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/python/functions_framework/main.go -------------------------------------------------------------------------------- /cmd/python/link_runtime/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/python/link_runtime/BUILD.bazel -------------------------------------------------------------------------------- /cmd/python/link_runtime/lib/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/python/link_runtime/lib/BUILD.bazel -------------------------------------------------------------------------------- /cmd/python/link_runtime/lib/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/python/link_runtime/lib/lib.go -------------------------------------------------------------------------------- /cmd/python/link_runtime/lib/lib_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/python/link_runtime/lib/lib_test.go -------------------------------------------------------------------------------- /cmd/python/link_runtime/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/python/link_runtime/main.go -------------------------------------------------------------------------------- /cmd/python/missing_entrypoint/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/python/missing_entrypoint/BUILD.bazel -------------------------------------------------------------------------------- /cmd/python/missing_entrypoint/lib/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/python/missing_entrypoint/lib/lib.go -------------------------------------------------------------------------------- /cmd/python/missing_entrypoint/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/python/missing_entrypoint/main.go -------------------------------------------------------------------------------- /cmd/python/pip/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/python/pip/BUILD.bazel -------------------------------------------------------------------------------- /cmd/python/pip/lib/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/python/pip/lib/BUILD.bazel -------------------------------------------------------------------------------- /cmd/python/pip/lib/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/python/pip/lib/lib.go -------------------------------------------------------------------------------- /cmd/python/pip/lib/lib_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/python/pip/lib/lib_test.go -------------------------------------------------------------------------------- /cmd/python/pip/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/python/pip/main.go -------------------------------------------------------------------------------- /cmd/python/poetry/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/python/poetry/BUILD.bazel -------------------------------------------------------------------------------- /cmd/python/poetry/lib/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/python/poetry/lib/BUILD.bazel -------------------------------------------------------------------------------- /cmd/python/poetry/lib/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/python/poetry/lib/lib.go -------------------------------------------------------------------------------- /cmd/python/poetry/lib/lib_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/python/poetry/lib/lib_test.go -------------------------------------------------------------------------------- /cmd/python/poetry/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/python/poetry/main.go -------------------------------------------------------------------------------- /cmd/python/runtime/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/python/runtime/BUILD.bazel -------------------------------------------------------------------------------- /cmd/python/runtime/lib/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/python/runtime/lib/BUILD.bazel -------------------------------------------------------------------------------- /cmd/python/runtime/lib/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/python/runtime/lib/lib.go -------------------------------------------------------------------------------- /cmd/python/runtime/lib/lib_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/python/runtime/lib/lib_test.go -------------------------------------------------------------------------------- /cmd/python/runtime/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/python/runtime/main.go -------------------------------------------------------------------------------- /cmd/python/uv/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/python/uv/BUILD.bazel -------------------------------------------------------------------------------- /cmd/python/uv/lib/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/python/uv/lib/BUILD.bazel -------------------------------------------------------------------------------- /cmd/python/uv/lib/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/python/uv/lib/lib.go -------------------------------------------------------------------------------- /cmd/python/uv/lib/lib_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/python/uv/lib/lib_test.go -------------------------------------------------------------------------------- /cmd/python/uv/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/python/uv/main.go -------------------------------------------------------------------------------- /cmd/python/webserver/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/python/webserver/BUILD.bazel -------------------------------------------------------------------------------- /cmd/python/webserver/lib/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/python/webserver/lib/BUILD.bazel -------------------------------------------------------------------------------- /cmd/python/webserver/lib/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/python/webserver/lib/lib.go -------------------------------------------------------------------------------- /cmd/python/webserver/lib/lib_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/python/webserver/lib/lib_test.go -------------------------------------------------------------------------------- /cmd/python/webserver/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/python/webserver/main.go -------------------------------------------------------------------------------- /cmd/python/webserver/requirements.txt: -------------------------------------------------------------------------------- 1 | gunicorn==21.2.0 2 | -------------------------------------------------------------------------------- /cmd/ruby/appengine/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/ruby/appengine/BUILD.bazel -------------------------------------------------------------------------------- /cmd/ruby/appengine/lib/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/ruby/appengine/lib/BUILD.bazel -------------------------------------------------------------------------------- /cmd/ruby/appengine/lib/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/ruby/appengine/lib/lib.go -------------------------------------------------------------------------------- /cmd/ruby/appengine/lib/lib_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/ruby/appengine/lib/lib_test.go -------------------------------------------------------------------------------- /cmd/ruby/appengine/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/ruby/appengine/main.go -------------------------------------------------------------------------------- /cmd/ruby/appengine_validation/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/ruby/appengine_validation/BUILD.bazel -------------------------------------------------------------------------------- /cmd/ruby/appengine_validation/lib/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/ruby/appengine_validation/lib/lib.go -------------------------------------------------------------------------------- /cmd/ruby/appengine_validation/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/ruby/appengine_validation/main.go -------------------------------------------------------------------------------- /cmd/ruby/bundle/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/ruby/bundle/BUILD.bazel -------------------------------------------------------------------------------- /cmd/ruby/bundle/lib/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/ruby/bundle/lib/BUILD.bazel -------------------------------------------------------------------------------- /cmd/ruby/bundle/lib/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/ruby/bundle/lib/lib.go -------------------------------------------------------------------------------- /cmd/ruby/bundle/lib/lib_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/ruby/bundle/lib/lib_test.go -------------------------------------------------------------------------------- /cmd/ruby/bundle/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/ruby/bundle/main.go -------------------------------------------------------------------------------- /cmd/ruby/flex_entrypoint/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/ruby/flex_entrypoint/BUILD.bazel -------------------------------------------------------------------------------- /cmd/ruby/flex_entrypoint/lib/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/ruby/flex_entrypoint/lib/BUILD.bazel -------------------------------------------------------------------------------- /cmd/ruby/flex_entrypoint/lib/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/ruby/flex_entrypoint/lib/lib.go -------------------------------------------------------------------------------- /cmd/ruby/flex_entrypoint/lib/lib_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/ruby/flex_entrypoint/lib/lib_test.go -------------------------------------------------------------------------------- /cmd/ruby/flex_entrypoint/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/ruby/flex_entrypoint/main.go -------------------------------------------------------------------------------- /cmd/ruby/functions_framework/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/ruby/functions_framework/BUILD.bazel -------------------------------------------------------------------------------- /cmd/ruby/functions_framework/lib/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/ruby/functions_framework/lib/lib.go -------------------------------------------------------------------------------- /cmd/ruby/functions_framework/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/ruby/functions_framework/main.go -------------------------------------------------------------------------------- /cmd/ruby/missing_entrypoint/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/ruby/missing_entrypoint/BUILD.bazel -------------------------------------------------------------------------------- /cmd/ruby/missing_entrypoint/lib/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/ruby/missing_entrypoint/lib/BUILD.bazel -------------------------------------------------------------------------------- /cmd/ruby/missing_entrypoint/lib/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/ruby/missing_entrypoint/lib/lib.go -------------------------------------------------------------------------------- /cmd/ruby/missing_entrypoint/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/ruby/missing_entrypoint/main.go -------------------------------------------------------------------------------- /cmd/ruby/rails/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/ruby/rails/BUILD.bazel -------------------------------------------------------------------------------- /cmd/ruby/rails/lib/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/ruby/rails/lib/BUILD.bazel -------------------------------------------------------------------------------- /cmd/ruby/rails/lib/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/ruby/rails/lib/lib.go -------------------------------------------------------------------------------- /cmd/ruby/rails/lib/lib_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/ruby/rails/lib/lib_test.go -------------------------------------------------------------------------------- /cmd/ruby/rails/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/ruby/rails/main.go -------------------------------------------------------------------------------- /cmd/ruby/rubygems/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/ruby/rubygems/BUILD.bazel -------------------------------------------------------------------------------- /cmd/ruby/rubygems/lib/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/ruby/rubygems/lib/BUILD.bazel -------------------------------------------------------------------------------- /cmd/ruby/rubygems/lib/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/ruby/rubygems/lib/lib.go -------------------------------------------------------------------------------- /cmd/ruby/rubygems/lib/lib_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/ruby/rubygems/lib/lib_test.go -------------------------------------------------------------------------------- /cmd/ruby/rubygems/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/ruby/rubygems/main.go -------------------------------------------------------------------------------- /cmd/ruby/runtime/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/ruby/runtime/BUILD.bazel -------------------------------------------------------------------------------- /cmd/ruby/runtime/lib/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/ruby/runtime/lib/BUILD.bazel -------------------------------------------------------------------------------- /cmd/ruby/runtime/lib/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/ruby/runtime/lib/lib.go -------------------------------------------------------------------------------- /cmd/ruby/runtime/lib/lib_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/ruby/runtime/lib/lib_test.go -------------------------------------------------------------------------------- /cmd/ruby/runtime/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/ruby/runtime/main.go -------------------------------------------------------------------------------- /cmd/utils/archive_source/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/utils/archive_source/BUILD.bazel -------------------------------------------------------------------------------- /cmd/utils/archive_source/lib/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/utils/archive_source/lib/BUILD.bazel -------------------------------------------------------------------------------- /cmd/utils/archive_source/lib/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/utils/archive_source/lib/lib.go -------------------------------------------------------------------------------- /cmd/utils/archive_source/lib/lib_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/utils/archive_source/lib/lib_test.go -------------------------------------------------------------------------------- /cmd/utils/archive_source/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/utils/archive_source/main.go -------------------------------------------------------------------------------- /cmd/utils/label/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/utils/label/BUILD.bazel -------------------------------------------------------------------------------- /cmd/utils/label/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/utils/label/README.md -------------------------------------------------------------------------------- /cmd/utils/label/lib/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/utils/label/lib/BUILD.bazel -------------------------------------------------------------------------------- /cmd/utils/label/lib/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/utils/label/lib/lib.go -------------------------------------------------------------------------------- /cmd/utils/label/lib/lib_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/utils/label/lib/lib_test.go -------------------------------------------------------------------------------- /cmd/utils/label/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/utils/label/main.go -------------------------------------------------------------------------------- /cmd/utils/nginx/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/utils/nginx/BUILD.bazel -------------------------------------------------------------------------------- /cmd/utils/nginx/lib/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/utils/nginx/lib/BUILD.bazel -------------------------------------------------------------------------------- /cmd/utils/nginx/lib/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/utils/nginx/lib/lib.go -------------------------------------------------------------------------------- /cmd/utils/nginx/lib/lib_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/utils/nginx/lib/lib_test.go -------------------------------------------------------------------------------- /cmd/utils/nginx/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/cmd/utils/nginx/main.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/go.mod -------------------------------------------------------------------------------- /internal/acceptance/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/internal/acceptance/BUILD.bazel -------------------------------------------------------------------------------- /internal/acceptance/acceptance.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/internal/acceptance/acceptance.go -------------------------------------------------------------------------------- /internal/acceptance/acceptance_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/internal/acceptance/acceptance_test.go -------------------------------------------------------------------------------- /internal/acceptance/args.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/internal/acceptance/args.bzl -------------------------------------------------------------------------------- /internal/acceptance/defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/internal/acceptance/defs.bzl -------------------------------------------------------------------------------- /internal/acceptance/environment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/internal/acceptance/environment.go -------------------------------------------------------------------------------- /internal/acceptance/structure.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/internal/acceptance/structure.go -------------------------------------------------------------------------------- /internal/acceptance/structure_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/internal/acceptance/structure_test.go -------------------------------------------------------------------------------- /internal/buildpacktest/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/internal/buildpacktest/BUILD.bazel -------------------------------------------------------------------------------- /internal/buildpacktest/buildpacktest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/internal/buildpacktest/buildpacktest.go -------------------------------------------------------------------------------- /internal/buildpacktestenv/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/internal/buildpacktestenv/BUILD.bazel -------------------------------------------------------------------------------- /internal/checktools/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/internal/checktools/BUILD.bazel -------------------------------------------------------------------------------- /internal/checktools/checktools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/internal/checktools/checktools.go -------------------------------------------------------------------------------- /internal/fakesecretmanager/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/internal/fakesecretmanager/BUILD.bazel -------------------------------------------------------------------------------- /internal/mockprocess/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/internal/mockprocess/BUILD.bazel -------------------------------------------------------------------------------- /internal/mockprocess/cmd/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/internal/mockprocess/cmd/BUILD.bazel -------------------------------------------------------------------------------- /internal/mockprocess/cmd/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/internal/mockprocess/cmd/main.go -------------------------------------------------------------------------------- /internal/mockprocess/mockprocess.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/internal/mockprocess/mockprocess.go -------------------------------------------------------------------------------- /internal/testserver/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/internal/testserver/BUILD.bazel -------------------------------------------------------------------------------- /internal/testserver/testserver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/internal/testserver/testserver.go -------------------------------------------------------------------------------- /kokoro/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/BUILD.bazel -------------------------------------------------------------------------------- /kokoro/presubmit/common.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/common.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/dotnet/flex.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/dotnet/flex.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/dotnet/gcf.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/dotnet/gcf.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/dotnet/gcp.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/dotnet/gcp.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/gcp/common.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/gcp/common.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/gcp/cpp.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/gcp/cpp.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/gcp/dart.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/gcp/dart.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/gcp/dotnet.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/gcp/dotnet.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/gcp/go.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/gcp/go.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/gcp/java.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/gcp/java.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/gcp/nodejs.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/gcp/nodejs.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/gcp/php.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/gcp/php.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/gcp/python.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/gcp/python.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/gcp/ruby.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/gcp/ruby.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/go/flex.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/go/flex.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/go/gae.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/go/gae.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/go/gcf.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/go/gcf.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/go/gcp.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/go/gcp.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/go/go111_gae_test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/go/go111_gae_test.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/go/go111_gcp_test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/go/go111_gcp_test.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/go/go112_gae_test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/go/go112_gae_test.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/go/go112_gcp_test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/go/go112_gcp_test.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/go/go113_gae_test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/go/go113_gae_test.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/go/go113_gcf_test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/go/go113_gcf_test.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/go/go113_gcp_test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/go/go113_gcp_test.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/go/go114_gae_test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/go/go114_gae_test.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/go/go114_gcp_test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/go/go114_gcp_test.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/go/go115_gae_test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/go/go115_gae_test.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/go/go115_gcp_test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/go/go115_gcp_test.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/go/go116_gae_test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/go/go116_gae_test.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/go/go116_gcf_test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/go/go116_gcf_test.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/go/go116_gcp_test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/go/go116_gcp_test.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/go/go118_flex_test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/go/go118_flex_test.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/go/go118_gae_test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/go/go118_gae_test.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/go/go118_gcf_test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/go/go118_gcf_test.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/go/go118_gcp_test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/go/go118_gcp_test.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/go/go119_flex_test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/go/go119_flex_test.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/go/go119_gae_test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/go/go119_gae_test.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/go/go119_gcf_test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/go/go119_gcf_test.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/go/go119_gcp_test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/go/go119_gcp_test.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/go/go120_flex_test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/go/go120_flex_test.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/go/go120_gae_test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/go/go120_gae_test.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/go/go120_gcf_test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/go/go120_gcf_test.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/go/go120_gcp_test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/go/go120_gcp_test.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/go/go121_flex_test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/go/go121_flex_test.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/go/go121_gae_test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/go/go121_gae_test.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/go/go121_gcf_test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/go/go121_gcf_test.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/go/go121_gcp_test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/go/go121_gcp_test.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/go/go122_flex_test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/go/go122_flex_test.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/go/go122_gae_test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/go/go122_gae_test.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/go/go122_gcf_test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/go/go122_gcf_test.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/go/go122_gcp_test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/go/go122_gcp_test.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/go/go123_flex_test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/go/go123_flex_test.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/go/go123_gae_test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/go/go123_gae_test.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/go/go123_gcf_test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/go/go123_gcf_test.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/go/go123_gcp_test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/go/go123_gcp_test.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/go/go124_flex_test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/go/go124_flex_test.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/go/go124_gae_test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/go/go124_gae_test.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/go/go124_gcf_test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/go/go124_gcf_test.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/go/go124_gcp_test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/go/go124_gcp_test.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/go/go125_flex_test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/go/go125_flex_test.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/go/go125_gae_test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/go/go125_gae_test.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/go/go125_gcf_test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/go/go125_gcf_test.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/go/go125_gcp_test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/go/go125_gcp_test.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/java/flex.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/java/flex.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/java/gae.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/java/gae.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/java/gcf.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/java/gcf.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/java/gcp.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/java/gcp.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/java/java11_flex_test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/java/java11_flex_test.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/java/java11_gae_test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/java/java11_gae_test.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/java/java11_gcf_test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/java/java11_gcf_test.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/java/java11_gcp_test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/java/java11_gcp_test.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/java/java17_flex_test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/java/java17_flex_test.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/java/java17_gae_test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/java/java17_gae_test.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/java/java17_gcf_test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/java/java17_gcf_test.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/java/java17_gcp_test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/java/java17_gcp_test.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/java/java21_flex_test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/java/java21_flex_test.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/java/java21_gae_test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/java/java21_gae_test.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/java/java21_gcf_test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/java/java21_gcf_test.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/java/java21_gcp_test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/java/java21_gcp_test.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/java/java25_flex_test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/java/java25_flex_test.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/java/java25_gae_test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/java/java25_gae_test.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/java/java25_gcf_test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/java/java25_gcf_test.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/java/java25_gcp_test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/java/java25_gcp_test.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/nodejs/flex.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/nodejs/flex.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/nodejs/gae.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/nodejs/gae.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/nodejs/gcf.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/nodejs/gcf.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/nodejs/gcp.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/nodejs/gcp.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/php/flex.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/php/flex.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/php/gae.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/php/gae.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/php/gcf.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/php/gcf.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/php/gcp.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/php/gcp.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/php/php72_gae_test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/php/php72_gae_test.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/php/php72_gcp_test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/php/php72_gcp_test.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/php/php73_gae_test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/php/php73_gae_test.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/php/php73_gcp_test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/php/php73_gcp_test.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/php/php74_flex_test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/php/php74_flex_test.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/php/php74_gae_test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/php/php74_gae_test.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/php/php74_gcf_test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/php/php74_gcf_test.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/php/php74_gcp_test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/php/php74_gcp_test.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/php/php81_flex_test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/php/php81_flex_test.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/php/php81_gae_test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/php/php81_gae_test.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/php/php81_gcf_test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/php/php81_gcf_test.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/php/php81_gcp_test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/php/php81_gcp_test.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/php/php82_flex_test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/php/php82_flex_test.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/php/php82_gae_test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/php/php82_gae_test.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/php/php82_gcf_test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/php/php82_gcf_test.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/php/php82_gcp_test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/php/php82_gcp_test.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/php/php83_flex_test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/php/php83_flex_test.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/php/php83_gae_test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/php/php83_gae_test.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/php/php83_gcf_test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/php/php83_gcf_test.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/php/php83_gcp_test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/php/php83_gcp_test.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/php/php84_flex_test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/php/php84_flex_test.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/php/php84_gae_test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/php/php84_gae_test.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/php/php84_gcf_test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/php/php84_gcf_test.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/php/php84_gcp_test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/php/php84_gcp_test.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/python/flex.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/python/flex.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/python/gae.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/python/gae.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/python/gcf-1.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/python/gcf-1.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/python/gcf-2.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/python/gcf-2.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/python/gcp-1.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/python/gcp-1.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/python/gcp-2.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/python/gcp-2.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/ruby/flex.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/ruby/flex.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/ruby/gae.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/ruby/gae.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/ruby/gcf.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/ruby/gcf.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/ruby/gcp.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/ruby/gcp.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/ruby/ruby25_gae_test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/ruby/ruby25_gae_test.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/ruby/ruby25_gcp_test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/ruby/ruby25_gcp_test.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/ruby/ruby26_gae_test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/ruby/ruby26_gae_test.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/ruby/ruby26_gcf_test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/ruby/ruby26_gcf_test.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/ruby/ruby26_gcp_test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/ruby/ruby26_gcp_test.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/ruby/ruby27_gae_test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/ruby/ruby27_gae_test.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/ruby/ruby27_gcf_test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/ruby/ruby27_gcf_test.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/ruby/ruby27_gcp_test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/ruby/ruby27_gcp_test.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/ruby/ruby30_gae_test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/ruby/ruby30_gae_test.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/ruby/ruby30_gcf_test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/ruby/ruby30_gcf_test.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/ruby/ruby30_gcp_test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/ruby/ruby30_gcp_test.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/ruby/ruby32_flex_test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/ruby/ruby32_flex_test.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/ruby/ruby32_gae_test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/ruby/ruby32_gae_test.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/ruby/ruby32_gcf_test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/ruby/ruby32_gcf_test.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/ruby/ruby32_gcp_test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/ruby/ruby32_gcp_test.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/ruby/ruby33_flex_test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/ruby/ruby33_flex_test.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/ruby/ruby33_gae_test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/ruby/ruby33_gae_test.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/ruby/ruby33_gcf_test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/ruby/ruby33_gcf_test.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/ruby/ruby33_gcp_test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/ruby/ruby33_gcp_test.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/ruby/ruby34_flex_test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/ruby/ruby34_flex_test.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/ruby/ruby34_gae_test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/ruby/ruby34_gae_test.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/ruby/ruby34_gcf_test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/ruby/ruby34_gcf_test.cfg -------------------------------------------------------------------------------- /kokoro/presubmit/ruby/ruby34_gcp_test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/presubmit/ruby/ruby34_gcp_test.cfg -------------------------------------------------------------------------------- /kokoro/scripts/presubmit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/kokoro/scripts/presubmit.sh -------------------------------------------------------------------------------- /licenses/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/licenses/BUILD.bazel -------------------------------------------------------------------------------- /licenses/buildpacks/licenses.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/licenses/buildpacks/licenses.yaml -------------------------------------------------------------------------------- /licenses/lifecycle-v0.20.5/licenses.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/licenses/lifecycle-v0.20.5/licenses.yaml -------------------------------------------------------------------------------- /pkg/appengine/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/appengine/BUILD.bazel -------------------------------------------------------------------------------- /pkg/appengine/appengine.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/appengine/appengine.go -------------------------------------------------------------------------------- /pkg/appengine/appengine_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/appengine/appengine_test.go -------------------------------------------------------------------------------- /pkg/appstart/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/appstart/BUILD.bazel -------------------------------------------------------------------------------- /pkg/appstart/appstart.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/appstart/appstart.go -------------------------------------------------------------------------------- /pkg/appyaml/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/appyaml/BUILD.bazel -------------------------------------------------------------------------------- /pkg/appyaml/appyaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/appyaml/appyaml.go -------------------------------------------------------------------------------- /pkg/appyaml/appyaml_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/appyaml/appyaml_test.go -------------------------------------------------------------------------------- /pkg/ar/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/ar/BUILD.bazel -------------------------------------------------------------------------------- /pkg/ar/ar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/ar/ar.go -------------------------------------------------------------------------------- /pkg/ar/ar_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/ar/ar_test.go -------------------------------------------------------------------------------- /pkg/buildererror/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/buildererror/BUILD.bazel -------------------------------------------------------------------------------- /pkg/buildererror/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/buildererror/error.go -------------------------------------------------------------------------------- /pkg/buildererror/error_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/buildererror/error_test.go -------------------------------------------------------------------------------- /pkg/buildererror/status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/buildererror/status.go -------------------------------------------------------------------------------- /pkg/buildererror/status_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/buildererror/status_test.go -------------------------------------------------------------------------------- /pkg/buildermetadata/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/buildermetadata/BUILD.bazel -------------------------------------------------------------------------------- /pkg/buildermetadata/buildermetadata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/buildermetadata/buildermetadata.go -------------------------------------------------------------------------------- /pkg/buildermetadata/buildermetadata_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/buildermetadata/buildermetadata_test.go -------------------------------------------------------------------------------- /pkg/buildermetrics/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/buildermetrics/BUILD.bazel -------------------------------------------------------------------------------- /pkg/buildermetrics/buildermetrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/buildermetrics/buildermetrics.go -------------------------------------------------------------------------------- /pkg/buildermetrics/buildermetrics_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/buildermetrics/buildermetrics_test.go -------------------------------------------------------------------------------- /pkg/buildermetrics/counter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/buildermetrics/counter.go -------------------------------------------------------------------------------- /pkg/buildermetrics/counter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/buildermetrics/counter_test.go -------------------------------------------------------------------------------- /pkg/buildermetrics/descriptor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/buildermetrics/descriptor.go -------------------------------------------------------------------------------- /pkg/buildermetrics/descriptor_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/buildermetrics/descriptor_test.go -------------------------------------------------------------------------------- /pkg/buildermetrics/descriptors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/buildermetrics/descriptors.go -------------------------------------------------------------------------------- /pkg/buildermetrics/descriptors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/buildermetrics/descriptors_test.go -------------------------------------------------------------------------------- /pkg/buildermetrics/floatdp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/buildermetrics/floatdp.go -------------------------------------------------------------------------------- /pkg/buildermetrics/floatdp_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/buildermetrics/floatdp_test.go -------------------------------------------------------------------------------- /pkg/buildermetrics/legacymetric.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/buildermetrics/legacymetric.go -------------------------------------------------------------------------------- /pkg/buildermetrics/legacymetric_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/buildermetrics/legacymetric_test.go -------------------------------------------------------------------------------- /pkg/buildermetrics/metricfield.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/buildermetrics/metricfield.go -------------------------------------------------------------------------------- /pkg/buildermetrics/metricfield_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/buildermetrics/metricfield_test.go -------------------------------------------------------------------------------- /pkg/builderoutput/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/builderoutput/BUILD.bazel -------------------------------------------------------------------------------- /pkg/builderoutput/builderoutput.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/builderoutput/builderoutput.go -------------------------------------------------------------------------------- /pkg/builderoutput/builderoutput_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/builderoutput/builderoutput_test.go -------------------------------------------------------------------------------- /pkg/cache/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/cache/BUILD.bazel -------------------------------------------------------------------------------- /pkg/cache/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/cache/cache.go -------------------------------------------------------------------------------- /pkg/cache/cache_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/cache/cache_test.go -------------------------------------------------------------------------------- /pkg/clearsource/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/clearsource/BUILD.bazel -------------------------------------------------------------------------------- /pkg/clearsource/clearsource.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/clearsource/clearsource.go -------------------------------------------------------------------------------- /pkg/clearsource/clearsource_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/clearsource/clearsource_test.go -------------------------------------------------------------------------------- /pkg/cloudfunctions/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/cloudfunctions/BUILD.bazel -------------------------------------------------------------------------------- /pkg/cloudfunctions/cloudfunctions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/cloudfunctions/cloudfunctions.go -------------------------------------------------------------------------------- /pkg/cloudfunctions/cloudfunctions_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/cloudfunctions/cloudfunctions_test.go -------------------------------------------------------------------------------- /pkg/cloudfunctions/env.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/cloudfunctions/env.go -------------------------------------------------------------------------------- /pkg/cloudfunctions/labels.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/cloudfunctions/labels.go -------------------------------------------------------------------------------- /pkg/commonbuildpacks/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/commonbuildpacks/BUILD.bazel -------------------------------------------------------------------------------- /pkg/commonbuildpacks/commonbuildpacks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/commonbuildpacks/commonbuildpacks.go -------------------------------------------------------------------------------- /pkg/dart/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/dart/BUILD.bazel -------------------------------------------------------------------------------- /pkg/dart/dart.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/dart/dart.go -------------------------------------------------------------------------------- /pkg/dart/dart_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/dart/dart_test.go -------------------------------------------------------------------------------- /pkg/dart/flutter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/dart/flutter.go -------------------------------------------------------------------------------- /pkg/dart/flutter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/dart/flutter_test.go -------------------------------------------------------------------------------- /pkg/devmode/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/devmode/BUILD.bazel -------------------------------------------------------------------------------- /pkg/devmode/devmode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/devmode/devmode.go -------------------------------------------------------------------------------- /pkg/devmode/devmode_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/devmode/devmode_test.go -------------------------------------------------------------------------------- /pkg/devmode/go.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/devmode/go.go -------------------------------------------------------------------------------- /pkg/devmode/java.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/devmode/java.go -------------------------------------------------------------------------------- /pkg/devmode/nodejs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/devmode/nodejs.go -------------------------------------------------------------------------------- /pkg/dotnet/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/dotnet/BUILD.bazel -------------------------------------------------------------------------------- /pkg/dotnet/dotnet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/dotnet/dotnet.go -------------------------------------------------------------------------------- /pkg/dotnet/dotnet_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/dotnet/dotnet_test.go -------------------------------------------------------------------------------- /pkg/dotnet/testdata/global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/dotnet/testdata/global.json -------------------------------------------------------------------------------- /pkg/env/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/env/BUILD.bazel -------------------------------------------------------------------------------- /pkg/env/env.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/env/env.go -------------------------------------------------------------------------------- /pkg/env/env_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/env/env_test.go -------------------------------------------------------------------------------- /pkg/fetch/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/fetch/BUILD.bazel -------------------------------------------------------------------------------- /pkg/fetch/fetch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/fetch/fetch.go -------------------------------------------------------------------------------- /pkg/fetch/fetch_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/fetch/fetch_test.go -------------------------------------------------------------------------------- /pkg/fetch/testdata/test.json: -------------------------------------------------------------------------------- 1 | {"hello": "world"} -------------------------------------------------------------------------------- /pkg/fetch/testdata/test.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/fetch/testdata/test.tar.gz -------------------------------------------------------------------------------- /pkg/fileutil/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/fileutil/BUILD.bazel -------------------------------------------------------------------------------- /pkg/fileutil/fileutil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/fileutil/fileutil.go -------------------------------------------------------------------------------- /pkg/fileutil/fileutil_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/fileutil/fileutil_test.go -------------------------------------------------------------------------------- /pkg/fileutil/testdata/path_with_subdir/subdir/example.com/htmlreturn/go.mod: -------------------------------------------------------------------------------- 1 | module example.com/htmlreturn -------------------------------------------------------------------------------- /pkg/firebase/apphostingschema/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/firebase/apphostingschema/BUILD.bazel -------------------------------------------------------------------------------- /pkg/firebase/apphostingschema/testdata/apphosting.empty.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkg/firebase/apphostingschema/vpcaccess.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/firebase/apphostingschema/vpcaccess.go -------------------------------------------------------------------------------- /pkg/firebase/bundleschema/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/firebase/bundleschema/BUILD.bazel -------------------------------------------------------------------------------- /pkg/firebase/bundleschema/bundleschema.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/firebase/bundleschema/bundleschema.go -------------------------------------------------------------------------------- /pkg/firebase/bundleschema/testdata/bundle_empty.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkg/firebase/envvars/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/firebase/envvars/BUILD.bazel -------------------------------------------------------------------------------- /pkg/firebase/envvars/envvars.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/firebase/envvars/envvars.go -------------------------------------------------------------------------------- /pkg/firebase/envvars/envvars_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/firebase/envvars/envvars_test.go -------------------------------------------------------------------------------- /pkg/firebase/faherror/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/firebase/faherror/BUILD.bazel -------------------------------------------------------------------------------- /pkg/firebase/faherror/faherror.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/firebase/faherror/faherror.go -------------------------------------------------------------------------------- /pkg/firebase/preparer/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/firebase/preparer/BUILD.bazel -------------------------------------------------------------------------------- /pkg/firebase/preparer/preparer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/firebase/preparer/preparer.go -------------------------------------------------------------------------------- /pkg/firebase/preparer/preparer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/firebase/preparer/preparer_test.go -------------------------------------------------------------------------------- /pkg/firebase/publisher/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/firebase/publisher/BUILD.bazel -------------------------------------------------------------------------------- /pkg/firebase/publisher/publisher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/firebase/publisher/publisher.go -------------------------------------------------------------------------------- /pkg/firebase/publisher/publisher_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/firebase/publisher/publisher_test.go -------------------------------------------------------------------------------- /pkg/firebase/publisher/testdata/bundle.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkg/firebase/publisher/testdata/env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/firebase/publisher/testdata/env -------------------------------------------------------------------------------- /pkg/firebase/secrets/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/firebase/secrets/BUILD.bazel -------------------------------------------------------------------------------- /pkg/firebase/secrets/secrets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/firebase/secrets/secrets.go -------------------------------------------------------------------------------- /pkg/firebase/secrets/secrets_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/firebase/secrets/secrets_test.go -------------------------------------------------------------------------------- /pkg/firebase/util/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/firebase/util/BUILD.bazel -------------------------------------------------------------------------------- /pkg/firebase/util/filesystem/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/firebase/util/filesystem/BUILD.bazel -------------------------------------------------------------------------------- /pkg/firebase/util/filesystem/filesystem.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/firebase/util/filesystem/filesystem.go -------------------------------------------------------------------------------- /pkg/firebase/util/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/firebase/util/util.go -------------------------------------------------------------------------------- /pkg/firebase/util/util_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/firebase/util/util_test.go -------------------------------------------------------------------------------- /pkg/flex/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/flex/BUILD.bazel -------------------------------------------------------------------------------- /pkg/flex/nginx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/flex/nginx.go -------------------------------------------------------------------------------- /pkg/flex/supervisor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/flex/supervisor.go -------------------------------------------------------------------------------- /pkg/flex/supervisor_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/flex/supervisor_test.go -------------------------------------------------------------------------------- /pkg/gcpbuildpack/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/gcpbuildpack/BUILD.bazel -------------------------------------------------------------------------------- /pkg/gcpbuildpack/builderoutput.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/gcpbuildpack/builderoutput.go -------------------------------------------------------------------------------- /pkg/gcpbuildpack/builderoutput_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/gcpbuildpack/builderoutput_test.go -------------------------------------------------------------------------------- /pkg/gcpbuildpack/detect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/gcpbuildpack/detect.go -------------------------------------------------------------------------------- /pkg/gcpbuildpack/detect_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/gcpbuildpack/detect_test.go -------------------------------------------------------------------------------- /pkg/gcpbuildpack/env.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/gcpbuildpack/env.go -------------------------------------------------------------------------------- /pkg/gcpbuildpack/exec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/gcpbuildpack/exec.go -------------------------------------------------------------------------------- /pkg/gcpbuildpack/exec_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/gcpbuildpack/exec_test.go -------------------------------------------------------------------------------- /pkg/gcpbuildpack/exit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/gcpbuildpack/exit.go -------------------------------------------------------------------------------- /pkg/gcpbuildpack/filepath.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/gcpbuildpack/filepath.go -------------------------------------------------------------------------------- /pkg/gcpbuildpack/gcpbuildpack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/gcpbuildpack/gcpbuildpack.go -------------------------------------------------------------------------------- /pkg/gcpbuildpack/gcpbuildpack_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/gcpbuildpack/gcpbuildpack_test.go -------------------------------------------------------------------------------- /pkg/gcpbuildpack/ioutil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/gcpbuildpack/ioutil.go -------------------------------------------------------------------------------- /pkg/gcpbuildpack/layer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/gcpbuildpack/layer.go -------------------------------------------------------------------------------- /pkg/gcpbuildpack/layer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/gcpbuildpack/layer_test.go -------------------------------------------------------------------------------- /pkg/gcpbuildpack/os.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/gcpbuildpack/os.go -------------------------------------------------------------------------------- /pkg/gcpbuildpack/os_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/gcpbuildpack/os_test.go -------------------------------------------------------------------------------- /pkg/gcpbuildpack/span.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/gcpbuildpack/span.go -------------------------------------------------------------------------------- /pkg/gcpbuildpack/span_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/gcpbuildpack/span_test.go -------------------------------------------------------------------------------- /pkg/golang/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/golang/BUILD.bazel -------------------------------------------------------------------------------- /pkg/golang/golang.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/golang/golang.go -------------------------------------------------------------------------------- /pkg/golang/golang_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/golang/golang_test.go -------------------------------------------------------------------------------- /pkg/golang/testdata/gopath_layer/simple_gomod/go.mod: -------------------------------------------------------------------------------- 1 | module example.com/package 2 | -------------------------------------------------------------------------------- /pkg/java/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/java/BUILD.bazel -------------------------------------------------------------------------------- /pkg/java/appenginewebxml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/java/appenginewebxml.go -------------------------------------------------------------------------------- /pkg/java/appenginewebxml_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/java/appenginewebxml_test.go -------------------------------------------------------------------------------- /pkg/java/gradle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/java/gradle.go -------------------------------------------------------------------------------- /pkg/java/gradle_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/java/gradle_test.go -------------------------------------------------------------------------------- /pkg/java/java.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/java/java.go -------------------------------------------------------------------------------- /pkg/java/java_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/java/java_test.go -------------------------------------------------------------------------------- /pkg/java/maven.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/java/maven.go -------------------------------------------------------------------------------- /pkg/java/maven_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/java/maven_test.go -------------------------------------------------------------------------------- /pkg/java/testdata/appengine-web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/java/testdata/appengine-web.xml -------------------------------------------------------------------------------- /pkg/java/testdata/empty_file.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/java/testdata/empty_file.xml -------------------------------------------------------------------------------- /pkg/java/testdata/empty_project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/java/testdata/empty_project.xml -------------------------------------------------------------------------------- /pkg/java/testdata/invalid_project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/java/testdata/invalid_project.xml -------------------------------------------------------------------------------- /pkg/java/testdata/minimal_appengine-web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/java/testdata/minimal_appengine-web.xml -------------------------------------------------------------------------------- /pkg/java/testdata/simple_project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/java/testdata/simple_project.xml -------------------------------------------------------------------------------- /pkg/nginx/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/nginx/BUILD.bazel -------------------------------------------------------------------------------- /pkg/nginx/nginx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/nginx/nginx.go -------------------------------------------------------------------------------- /pkg/nodejs/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/nodejs/BUILD.bazel -------------------------------------------------------------------------------- /pkg/nodejs/angular.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/nodejs/angular.go -------------------------------------------------------------------------------- /pkg/nodejs/angular_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/nodejs/angular_test.go -------------------------------------------------------------------------------- /pkg/nodejs/nextjs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/nodejs/nextjs.go -------------------------------------------------------------------------------- /pkg/nodejs/nextjs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/nodejs/nextjs_test.go -------------------------------------------------------------------------------- /pkg/nodejs/nodejs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/nodejs/nodejs.go -------------------------------------------------------------------------------- /pkg/nodejs/nodejs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/nodejs/nodejs_test.go -------------------------------------------------------------------------------- /pkg/nodejs/npm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/nodejs/npm.go -------------------------------------------------------------------------------- /pkg/nodejs/npm_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/nodejs/npm_test.go -------------------------------------------------------------------------------- /pkg/nodejs/nuxt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/nodejs/nuxt.go -------------------------------------------------------------------------------- /pkg/nodejs/nuxt_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/nodejs/nuxt_test.go -------------------------------------------------------------------------------- /pkg/nodejs/nx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/nodejs/nx.go -------------------------------------------------------------------------------- /pkg/nodejs/nx_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/nodejs/nx_test.go -------------------------------------------------------------------------------- /pkg/nodejs/pnpm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/nodejs/pnpm.go -------------------------------------------------------------------------------- /pkg/nodejs/pnpm_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/nodejs/pnpm_test.go -------------------------------------------------------------------------------- /pkg/nodejs/registry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/nodejs/registry.go -------------------------------------------------------------------------------- /pkg/nodejs/registry_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/nodejs/registry_test.go -------------------------------------------------------------------------------- /pkg/nodejs/sveltekit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/nodejs/sveltekit.go -------------------------------------------------------------------------------- /pkg/nodejs/sveltekit_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/nodejs/sveltekit_test.go -------------------------------------------------------------------------------- /pkg/nodejs/testdata/dummy-yarn.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/nodejs/testdata/dummy-yarn.tar.gz -------------------------------------------------------------------------------- /pkg/nodejs/turbo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/nodejs/turbo.go -------------------------------------------------------------------------------- /pkg/nodejs/turbo_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/nodejs/turbo_test.go -------------------------------------------------------------------------------- /pkg/nodejs/yarn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/nodejs/yarn.go -------------------------------------------------------------------------------- /pkg/nodejs/yarn_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/nodejs/yarn_test.go -------------------------------------------------------------------------------- /pkg/php/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/php/BUILD.bazel -------------------------------------------------------------------------------- /pkg/php/php.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/php/php.go -------------------------------------------------------------------------------- /pkg/php/php_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/php/php_test.go -------------------------------------------------------------------------------- /pkg/python/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/python/BUILD.bazel -------------------------------------------------------------------------------- /pkg/python/dependencies.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/python/dependencies.go -------------------------------------------------------------------------------- /pkg/python/dependencies_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/python/dependencies_test.go -------------------------------------------------------------------------------- /pkg/python/pyproject.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/python/pyproject.go -------------------------------------------------------------------------------- /pkg/python/pyproject_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/python/pyproject_test.go -------------------------------------------------------------------------------- /pkg/python/python.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/python/python.go -------------------------------------------------------------------------------- /pkg/python/python_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/python/python_test.go -------------------------------------------------------------------------------- /pkg/python/requirements.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/python/requirements.go -------------------------------------------------------------------------------- /pkg/python/requirements_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/python/requirements_test.go -------------------------------------------------------------------------------- /pkg/ruby/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/ruby/BUILD.bazel -------------------------------------------------------------------------------- /pkg/ruby/entrypoint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/ruby/entrypoint.go -------------------------------------------------------------------------------- /pkg/ruby/entrypoint_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/ruby/entrypoint_test.go -------------------------------------------------------------------------------- /pkg/ruby/gemfile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/ruby/gemfile.go -------------------------------------------------------------------------------- /pkg/ruby/gemfile_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/ruby/gemfile_test.go -------------------------------------------------------------------------------- /pkg/ruby/ruby.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/ruby/ruby.go -------------------------------------------------------------------------------- /pkg/ruby/ruby_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/ruby/ruby_test.go -------------------------------------------------------------------------------- /pkg/runtime/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/runtime/BUILD.bazel -------------------------------------------------------------------------------- /pkg/runtime/install.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/runtime/install.go -------------------------------------------------------------------------------- /pkg/runtime/install_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/runtime/install_test.go -------------------------------------------------------------------------------- /pkg/runtime/runtime.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/runtime/runtime.go -------------------------------------------------------------------------------- /pkg/runtime/runtime_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/runtime/runtime_test.go -------------------------------------------------------------------------------- /pkg/runtime/testdata/dummy-dart-sdk.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/runtime/testdata/dummy-dart-sdk.zip -------------------------------------------------------------------------------- /pkg/testdata/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/testdata/BUILD.bazel -------------------------------------------------------------------------------- /pkg/testdata/testdata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/testdata/testdata.go -------------------------------------------------------------------------------- /pkg/version/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/version/BUILD.bazel -------------------------------------------------------------------------------- /pkg/version/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/version/version.go -------------------------------------------------------------------------------- /pkg/version/version_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/version/version_test.go -------------------------------------------------------------------------------- /pkg/webconfig/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/webconfig/BUILD.bazel -------------------------------------------------------------------------------- /pkg/webconfig/webconfig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/pkg/webconfig/webconfig.go -------------------------------------------------------------------------------- /stacks/firebase_app_hosting_22/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/stacks/firebase_app_hosting_22/BUILD.bazel -------------------------------------------------------------------------------- /stacks/firebase_app_hosting_22/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/stacks/firebase_app_hosting_22/README.md -------------------------------------------------------------------------------- /stacks/google_22/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/stacks/google_22/BUILD.bazel -------------------------------------------------------------------------------- /stacks/google_22/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/stacks/google_22/README.md -------------------------------------------------------------------------------- /stacks/google_22/build-packages.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/stacks/google_22/build-packages.txt -------------------------------------------------------------------------------- /stacks/google_22/build.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/stacks/google_22/build.Dockerfile -------------------------------------------------------------------------------- /stacks/google_22/build_structure_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/stacks/google_22/build_structure_test.yaml -------------------------------------------------------------------------------- /stacks/google_22/run-packages.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/stacks/google_22/run-packages.txt -------------------------------------------------------------------------------- /stacks/google_22/run.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/stacks/google_22/run.Dockerfile -------------------------------------------------------------------------------- /stacks/google_22/run_structure_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/stacks/google_22/run_structure_test.yaml -------------------------------------------------------------------------------- /stacks/google_24/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/stacks/google_24/BUILD.bazel -------------------------------------------------------------------------------- /stacks/google_24/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/stacks/google_24/README.md -------------------------------------------------------------------------------- /stacks/google_24/run-packages.txt: -------------------------------------------------------------------------------- 1 | ca-certificates 2 | curl 3 | locales 4 | openssl 5 | tzdata 6 | -------------------------------------------------------------------------------- /stacks/google_24/run.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/stacks/google_24/run.Dockerfile -------------------------------------------------------------------------------- /stacks/google_24/run_structure_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/stacks/google_24/run_structure_test.yaml -------------------------------------------------------------------------------- /stacks/google_24_full/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/stacks/google_24_full/BUILD.bazel -------------------------------------------------------------------------------- /stacks/google_24_full/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/stacks/google_24_full/README.md -------------------------------------------------------------------------------- /stacks/google_24_full/build-packages.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/stacks/google_24_full/build-packages.txt -------------------------------------------------------------------------------- /stacks/google_24_full/build.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/stacks/google_24_full/build.Dockerfile -------------------------------------------------------------------------------- /stacks/google_24_full/run-packages.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/stacks/google_24_full/run-packages.txt -------------------------------------------------------------------------------- /stacks/google_24_full/run.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/stacks/google_24_full/run.Dockerfile -------------------------------------------------------------------------------- /stacks/google_24_universal/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/stacks/google_24_universal/BUILD.bazel -------------------------------------------------------------------------------- /stacks/google_24_universal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/stacks/google_24_universal/README.md -------------------------------------------------------------------------------- /stacks/google_24_universal/build.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/stacks/google_24_universal/build.Dockerfile -------------------------------------------------------------------------------- /stacks/google_24_universal/run-packages.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/stacks/google_24_universal/run-packages.txt -------------------------------------------------------------------------------- /stacks/google_24_universal/run.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/stacks/google_24_universal/run.Dockerfile -------------------------------------------------------------------------------- /stacks/google_gae_22/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/stacks/google_gae_22/BUILD.bazel -------------------------------------------------------------------------------- /stacks/google_gae_22/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/stacks/google_gae_22/README.md -------------------------------------------------------------------------------- /stacks/google_gae_22/build-packages.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/stacks/google_gae_22/build-packages.txt -------------------------------------------------------------------------------- /stacks/google_gae_22/build.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/stacks/google_gae_22/build.Dockerfile -------------------------------------------------------------------------------- /stacks/google_gae_22/run-packages.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/stacks/google_gae_22/run-packages.txt -------------------------------------------------------------------------------- /stacks/google_gae_22/run.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/stacks/google_gae_22/run.Dockerfile -------------------------------------------------------------------------------- /stacks/google_min_22/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/stacks/google_min_22/BUILD.bazel -------------------------------------------------------------------------------- /stacks/google_min_22/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/stacks/google_min_22/README.md -------------------------------------------------------------------------------- /stacks/google_min_22/run-packages.txt: -------------------------------------------------------------------------------- 1 | ca-certificates 2 | locales 3 | openssl 4 | tzdata 5 | curl 6 | -------------------------------------------------------------------------------- /stacks/google_min_22/run.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/stacks/google_min_22/run.Dockerfile -------------------------------------------------------------------------------- /tools/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/tools/BUILD.bazel -------------------------------------------------------------------------------- /tools/buildpack.toml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/tools/buildpack.toml.template -------------------------------------------------------------------------------- /tools/checktools/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/tools/checktools/BUILD.bazel -------------------------------------------------------------------------------- /tools/checktools/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/tools/checktools/main.go -------------------------------------------------------------------------------- /tools/checktools/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/tools/checktools/main_test.go -------------------------------------------------------------------------------- /tools/cloudbuild/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/tools/cloudbuild/Dockerfile -------------------------------------------------------------------------------- /tools/cloudbuild/create_builder.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/tools/cloudbuild/create_builder.yaml -------------------------------------------------------------------------------- /tools/cloudbuild/create_stacks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/tools/cloudbuild/create_stacks.yaml -------------------------------------------------------------------------------- /tools/cloudbuild/diff_licenses.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/tools/cloudbuild/diff_licenses.yaml -------------------------------------------------------------------------------- /tools/create-builder.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/tools/create-builder.sh -------------------------------------------------------------------------------- /tools/create-buildpackage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/tools/create-buildpackage.sh -------------------------------------------------------------------------------- /tools/defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/tools/defs.bzl -------------------------------------------------------------------------------- /tools/generate_flatten_flag.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/tools/generate_flatten_flag.sh -------------------------------------------------------------------------------- /tools/licenses/add.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/tools/licenses/add.sh -------------------------------------------------------------------------------- /tools/licenses/diff.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/tools/licenses/diff.sh -------------------------------------------------------------------------------- /tools/licenses/gather.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/tools/licenses/gather.sh -------------------------------------------------------------------------------- /tools/licenses/yaml.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/tools/licenses/yaml.sh -------------------------------------------------------------------------------- /tools/pull-images.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/buildpacks/HEAD/tools/pull-images.sh --------------------------------------------------------------------------------