-
Notifications
You must be signed in to change notification settings - Fork 117
/
developing-buildpacks.html.md.erb
41 lines (27 loc) · 2.1 KB
/
developing-buildpacks.html.md.erb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
---
title: Customizing and developing buildpacks in Cloud Foundry
owner: Buildpacks
---
Buildpacks enable you to package frameworks and runtime support for your application.
Cloud Foundry provides system buildpacks and an interface for customizing existing buildpacks and
developing new buildpacks.
## <a id="create-buildpacks"></a>Customizing and creating buildpacks
If your application uses a language or framework that the Cloud Foundry system buildpacks do not support, do one of the following:
* Use a [Cloud Foundry Community Buildpack](https://github.com/cloudfoundry-community/cf-docs-contrib/wiki/Buildpacks).
* Use a [Heroku Third-Party Buildpack](https://devcenter.heroku.com/articles/third-party-buildpacks).
* Customize an existing buildpack or create your own [custom buildpack](./custom.html).
A common development practice for custom buildpacks is to fork existing buildpacks and sync subsequent patches from upstream.
For information about customizing an existing buildpack or creating your own, see the following:
+ <a href="./custom.html" class="subnav">Creating Custom Buildpacks</a>
+ <a href="./depend-pkg-offline.html" class="subnav">Packaging Dependencies for Offline Buildpacks</a>
## <a id='maintain-buildpacks'></a>Maintaining buildpacks
After you have modified an existing buildpack or created your own, it is necessary to maintain it.
See the following topics to maintain your own buildpacks:
* <a href="./merging_upstream.html" class="subnav">Merging with upstream buildpacks</a>
* <a href="./upgrading_dependency_versions.html" class="subnav">Upgrading dependency versions</a>
To configure a production server for your web app,
see <a href="./prod-server.html">Configuring a production server</a>.
## <a id="using-ci"></a>Using CI for buildpacks
For information about updating and releasing a new version of a Cloud Foundry buildpack through
the Cloud Foundry Buildpacks Team Concourse pipeline, see <a href="./buildpack-ci-index.html" class="subnav">Using CI for buildpacks</a>.
You can use this as a model when working with Concourse to build and release new versions of your own buildpacks.