mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-04-16 12:19:10 +00:00
8 lines
209 B
Nix
8 lines
209 B
Nix
{ dockerTools, ruby, bundix, mruby, rails-new, foodogsquaredLib }:
|
|
|
|
foodogsquaredLib.buildDockerImage {
|
|
name = "ruby-on-rails";
|
|
tag = "ror-${ruby.version}";
|
|
contents = [ ruby bundix mruby rails-new ];
|
|
}
|