You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 16, 2024. It is now read-only.
For local development, where someone doesn't want to build their code in to a container,
8000
but rather mount their code in, it could awesome if we could split these in to two images...
This will allow for people to do things like: docker run --rm -it -v $(pwd):. heroku/ruby-base:2.2.2 bash and enter a development environment, without building their code in. Super useful to me, not sure about everyone else.
Would this allow developers also to add pre-requisites to their Dockerfile? For local development, we need to run capybara-webkit which has an upstream dependency on qt5. There is currently no way to do this today... #10 😭
@itsmeduncan Docker does not allow to change ONBUILD steps neither add extra steps before they.
If you need different dependencies/steps, the solution if to create your own Dockerfile from heroku/cedar:14, as I did in paulodiovani/docker-heroku-ruby
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
For local development, where someone doesn't want to build their code in to a container, 8000 but rather mount their code in, it could awesome if we could split these in to two images...
This will allow for people to do things like:
docker run --rm -it -v $(pwd):. heroku/ruby-base:2.2.2 bash
and enter a development environment, without building their code in. Super useful to me, not sure about everyone else.Something like (but untested):
base:
heroku/ruby-base:{ruby_version}
onbuild:
heroku/ruby:{ruby_version}
The text was updated successfully, but these errors were encountered: