Last active
March 2, 2018 12:43
-
-
Save dasch/b5964df59bc030e5e3da75f0f1143a5f to your computer and use it in GitHub Desktop.
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