22 lines
752 B
Markdown
22 lines
752 B
Markdown
# Sample Apps
|
|
|
|
> DISCLAIMER:
|
|
> _No alterations are necessary to standard applications in order to be built by buildpacks._
|
|
>
|
|
> Some applications here have _optional_ files for extended functionality. They will be called out in their README.md file.
|
|
|
|
### Running the apps
|
|
|
|
To build images for most of these apps, simply execute:
|
|
|
|
```bash
|
|
pack build -p apps/<APP> --builder cnbs/sample-builder:<jammy OR alpine> sample-app
|
|
```
|
|
|
|
_After building the app you should be able to simply run it via `docker run -it -p 8080:8080 sample-app`.
|
|
Go to [localhost:8080](http://localhost:8080) to see the app running._
|
|
|
|
### What's next?
|
|
|
|
It might be interesting to see how apps get turned into layers, eh? Check out [buildpacks](../buildpacks) to take the next step.
|