forked from cloudfoundry/docs-buildpacks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html.md.erb
91 lines (77 loc) · 4.07 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
---
title: Buildpacks
owner: Buildpacks
---
<strong><%= modified_date %></strong>
Buildpacks provide framework and runtime support for apps. Buildpacks typically examine your apps to determine what dependencies to download and how to configure the apps to communicate with bound services.
When you push an app, Cloud Foundry automatically detects an appropriate buildpack for it. This buildpack is used to compile or prepare your app for launch.
<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> app.</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.