box icon indicating copy to clipboard operation
box copied to clipboard

A mruby-based Builder for Docker Images

Results 24 box issues
Sort by recently updated
recently updated
newest added

NOTE: There'll be another ticket about the `pragma` statement. Setting this pragma would allow you to set a value; the age of which to warn after a layer has been...

```ruby from "debian:latest", pull: true ```

file1: ```ruby from "alpine" skip do run "ls" end ``` file2: ```ruby import "file1" ``` This will result in two layer editing series both editing in the same layers (we...

While exploring in the repl, I'd like to be able to type 'help' and get a list of box commands. i'd like to be able to type `help ` and...

Layer cache is great, but at times it's not smart enough or non-transparent in how it decided to rebuild something and there is only certain depth we can go into...

```ruby layer do run "one" copy "two", "two" run "three" end layer do run "another!" copy "woo", "woo" end ``` This executes the series of commands within the block to...

Google Cloud Builder would be a good candidate for fully-remote builder/executor implementation, it supports async and parallel modes, but it's probably easier to start with a serial implementation. I'm still...

The dockerfile parser is well segmented from the rest of the docker codebase. Extract the parser and apply it to box's executor interface (docker integration only for now). Omit statements...

basically, this would allow your build plan to generate an image based on your host filesystem. Presumably this would only work on linux hosts. Not sure how possible this is,...

This keyword would accept a source filename, target filename, and a map of parameters. The parameters would be included into a go or erb template (torn on this; go would...