Last active
March 8, 2016 07:18
-
-
Save badri/a427e9c4d03ead7ddf17 to your computer and use it in GitHub Desktop.
buildpack doccker image
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM progrium/cedarish:cedar14 | |
RUN curl https://github.com/gliderlabs/herokuish/releases/download/v0.3.1/herokuish_0.3.1_linux_x86_64.tgz \ | |
--silent -L | tar -xzC /bin | |
# install herokuish supported buildpacks and entrypoints | |
RUN /bin/herokuish buildpack install \ | |
&& ln -s /bin/herokuish /build \ | |
&& ln -s /bin/herokuish /start \ | |
&& ln -s /bin/herokuish /exec | |
# backwards compatibility | |
RUN curl https://raw.githubusercontent.com/progrium/buildstep/master/rootfs/etc/profile --silent > /etc/profile | |
RUN curl https://raw.githubusercontent.com/progrium/buildstep/master/rootfs/build/builder --silent > builder |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment