Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ Google Cloud's buildpacks can be configured in a few ways:
* [Go](https://cloud.google.com/docs/buildpacks/go)
* [Java](https://cloud.google.com/docs/buildpacks/java)
* [Ruby](https://cloud.google.com/docs/buildpacks/ruby)
* [PHP](https://cloud.google.com/docs/buildpacks/php)

## App Engine and Cloud Function Builders and Buildpacks

Expand Down Expand Up @@ -66,21 +67,21 @@ The application container image can then be executed locally:
```bash
docker run --rm -p 8080:8080 <app-name>
```
Locally, your application might depend on App Engine [enviroment variables](https://cloud.google.com/appengine/docs/standard/java-gen2/runtime#environment_variables) that would need to be set in the local environment.
Locally, your application might depend on App Engine [environment variables](https://cloud.google.com/appengine/docs/standard/java-gen2/runtime#environment_variables) that would need to be set in the local environment.

## Learn more about Cloud Native Buildpacks

This project implements the Cloud Native Buildpacks specification.
To read more, see Cloud Native Buildpacks project
[documentation](https://buildpacks.io/docs/concepts/).
[documentation](https://buildpacks.io/docs/for-app-developers/concepts/).

For those new to buildpacks, these concepts are good starting points:

* **[Builder](https://buildpacks.io/docs/concepts/components/builder/)** A container image that contains buildpacks and detection order in which builds are executed.
* **[Buildpack](https://buildpacks.io/docs/concepts/components/buildpack/)** An executable that "inspects your app source code and formulates a plan to build and run your application".
* **[Builder](https://buildpacks.io/docs/concepts/components/for-app-developers/builder/)** A container image that contains buildpacks and detection order in which builds are executed.
* **[Buildpack](https://buildpacks.io/docs/concepts/components/for-app-developers/buildpack/)** An executable that "inspects your app source code and formulates a plan to build and run your application".
* **Buildpack Group** Several buildpacks which together provide support for a
specific language or framework.
* **[Run Image](https://buildpacks.io/docs/concepts/components/stack/)** The container image that serves as the base for the built application.
* **[Run Image](https://buildpacks.io/docs/for-app-developers/concepts/base-images/stack/)** The container image that serves as the base for the built application.

## Support

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
aiohttp==3.8.1
aiohttp==3.13.3
aiosignal==1.2.0
async-timeout==4.0.2
attrs==21.4.0
Expand Down
4 changes: 2 additions & 2 deletions stacks/google_22/run.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,8 @@ LABEL io.buildpacks.stack.distro.version="22.04"
LABEL io.buildpacks.stack.maintainer="Google"
LABEL io.buildpacks.stack.mixins="[]"
LABEL io.buildpacks.stack.homepage \
"https://github.com/GoogleCloudPlatform/buildpacks/stacks/google-22"
"https://github.com/GoogleCloudPlatform/buildpacks/tree/main/stacks/google_22"

# Set $PORT to 8080 by default
ENV PORT 8080
EXPOSE 8080
EXPOSE 8080