forked from cloudfoundry/docs-buildpacks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html.md.erb
94 lines (80 loc) · 4.11 KB
/
index.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
---
title: Buildpacks
owner: Buildpacks
---
<strong><%= modified_date %></strong>
Buildpacks provide framework and runtime support for your applications.
Buildpacks typically examine user-provided artifacts to determine what dependencies to
download and how to configure applications to communicate with bound services.
When you push an application, Cloud Foundry automatically detects which buildpack is required
and installs it on the Diego cell where the application needs to run.
<p class="note"><strong>Note</strong>: Cloud Foundry deployments often have limited access to dependencies.
This limitation occurs when the deployment is behind a firewall, or when administrators want to use local mirrors and proxies.
In these circumstances, Cloud Foundry provides a <a href="https://github.com/cloudfoundry/buildpack-packager">
Buildpack Packager</a> application.</p>
##<a id='about-buildpacks'></a>About Buildpacks
For general information about buildpacks, see <a href="./using-buildpacks.html" class="subnav">About Buildpacks</a>.
##<a id='system-buildpacks'></a>System Buildpacks
Cloud Foundry includes a set of system buildpacks for common languages and frameworks.
This table lists the system buildpacks.
<table border="1" class="nice" >
<tr>
<th>Name</th>
<th>Supported Languages, Frameworks, and Technologies</th>
<th>GitHub Repository</th>
</tr>
<tr>
<td><a href="./binary/index.html" class="subnav">Binary</a></td>
<td><p><i>n/a</i></p></td>
<td><a href="https://github.com/cloudfoundry/binary-buildpack">Binary source</a></td>
</tr>
<tr>
<td><a href="./go/index.html" class="subnav">Go</a></td>
<td><p>Go</p></td>
<td><a href="https://github.com/cloudfoundry/go-buildpack">Go source</a></td>
</tr>
<tr>
<td><a href="./java/index.html" class="subnav">Java</a></td>
<td><p>Grails, Play, Spring, or any other JVM-based language or framework</p></td>
<td><a href="https://github.com/cloudfoundry/java-buildpack">Java source</a></td>
</tr>
<tr>
<td><a href="./dotnet-core/index.html" class="subnav">.NET Core</a></td>
<td><p>.NET Core</p></td>
<td><a href="https://github.com/cloudfoundry/dotnet-core-buildpack/">.NET Core source</a></td>
</tr>
<tr>
<td><a href="./node/index.html" class="subnav">Node.js</a></td>
<td><p>Node or JavaScript</p></td>
<td><a href="https://github.com/cloudfoundry/nodejs-buildpack">Node.js source</a></td>
</tr>
<tr>
<td><a href="./php/index.html" class="subnav">PHP</a></td>
<td><p>Cake, Symfony, Zend, Nginx, or HTTPD</p></td>
<td><a href="https://github.com/cloudfoundry/php-buildpack">PHP source</a></td>
</tr>
<tr>
<td><a href="./python/index.html" class="subnav">Python</a></td>
<td><p>Django or Flask</p></td>
<td><a href="https://github.com/cloudfoundry/python-buildpack">Python source</a></td>
</tr>
<tr>
<td><a href="./ruby/index.html" class="subnav">Ruby</a></td>
<td><p>Ruby, JRuby, Rack, Rails, or Sinatra</p></td>
<td><a href="https://github.com/cloudfoundry/ruby-buildpack">Ruby source</a></td>
</tr>
<tr>
<td><a href="./staticfile/index.html" class="subnav">Staticfile</a></td>
<td><p>HTML, CSS, JavaScript, or Nginx</p></td>
<td><a href="https://github.com/cloudfoundry/staticfile-buildpack">Staticfile source</a></td>
</tr>
</table>
##<a id='community-buildpacks'></a>Community Buildpacks
You can find a list of unsupported, community-created buildpacks here:
<a href="https://github.com/cloudfoundry-community/cf-docs-contrib/wiki/Buildpacks#community-created">
cf-docs-contrib</a>.
##<a id='developing-buildpacks'></a>Customizing and Developing Buildpacks
For information about customizing existing buildpacks and developing new buildpacks, see <a href="./developing-buildpacks.html" class="subnav">Customizing and Developing Buildpacks</a>.
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">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.