Skip to content

Revisions and additions #7

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 2 commits into from
Closed
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
8 changes: 7 additions & 1 deletion buildpack-deps/README-content.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# What is buildpack-deps?

`buildpack-deps` is in spirit similar to [Heroku's stack images](https://github.com/heroku/stack-images/blob/master/bin/cedar.sh); it includes a huge number of "development header" packages needed by arbitrary things like Ruby Gems, PyPI modules, etc. This makes it possible to do something like a `bundle install` in an arbitrary application directory without knowing beforehand that it needs `ssl.h` to build one of the modules depended on, for example.
# What is buildpack-deps?

In spirit, `buildpack-deps` is similar to [Heroku's stack images](https://github.com/heroku/stack-images/blob/master/bin/cedar.sh). It includes a
large number of "development header" packages needed by various things like Ruby Gems,
PyPI modules, etc. For example, `buildpack-deps` would let you do a `bundle install` in
an arbitrary application directory without knowing beforehand that `ssl.h` is required to
build a dependent module.
22 changes: 18 additions & 4 deletions buildpack-deps/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,30 @@

# What is buildpack-deps?

`buildpack-deps` is in spirit similar to [Heroku's stack images](https://github.com/heroku/stack-images/blob/master/bin/cedar.sh); it includes a huge number of "development header" packages needed by arbitrary things like Ruby Gems, PyPI modules, etc. This makes it possible to do something like a `bundle install` in an arbitrary application directory without knowing beforehand that it needs `ssl.h` to build one of the modules depended on, for example.
In spirit, `buildpack-deps` is similar to [Heroku's stack images](https://github.com/heroku/stack-images/blob/master/bin/cedar.sh). It includes a
large number of "development header" packages needed by various things like Ruby Gems,
PyPI modules, etc. For example, `buildpack-deps` would let you do a `bundle install` in
an arbitrary application directory without knowing beforehand that `ssl.h` is required to
build a dependent module.

# User Feedback

## Issues

If you have any questions about the image, please contact us through a [GitHub issue](https://github.com/docker-library/buildpack-deps/issues) or in the IRC channel `#docker-library` on [Freenode](https://freenode.net).
If you have any questions about the image, please contact us through a [GitHub
issue](https://github.com/docker-library/buildpack-deps/issues) or in the IRC channel
`#docker-library` on [Freenode](https://freenode.net).

## Contributing

If you want to contribute new features or updates, we are always thrilled to receive pull requests, and do our best to process them as fast as possible.
If you want to contribute new features or updates, we are always thrilled to receive pull
requests, and do our best to process them as fast as possible.

We recommend discussing your plans through a [GitHub issue](https://github.com/docker-library/buildpack-deps/issues) before starting to code,
especially for more ambitious contributions. This gives other contributors a chance to
point you in the right direction, give feedback on your design, and maybe point out if
someone else is working on the same thing.

Similarly, if you encounter an issue, bug, or problem you don't want to tackle yourself,
please file a [GitHub issue](https://github.com/docker-library/buildpack-deps/issues).

We recommend discussing your plans through a [GitHub issue](https://github.com/docker-library/buildpack-deps/issues) before starting to code - especially for more ambitious contributions. This gives other contributors a chance to point you in the right direction, give feedback on your design, and maybe point out if someone else is working on the same thing.