Last active
March 2, 2018 12:43
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
# Distributed build system using Makefile-esque syntax. | |
base: | |
FROM ruby:2.4.1 | |
bundle: base | |
ADD Gemfile Gemfile.lock vendor/ | |
RUN bundle install | |
assets: base | |
ADD app/assets/ | |
RUN ./compile-assets | |
code: base | |
ADD app/ lib/ config/ | |
main: code bundle assets |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment