Skip to content

Instantly share code, notes, and snippets.

@badri
Last active March 8, 2016 07:18
Show Gist options
  • Save badri/a427e9c4d03ead7ddf17 to your computer and use it in GitHub Desktop.
Save badri/a427e9c4d03ead7ddf17 to your computer and use it in GitHub Desktop.
buildpack doccker image
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