mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-04-16 12:19:10 +00:00
devcontainers: add tag
It's for ease of updating containers in CI.
This commit is contained in:
parent
ebc6ead5e3
commit
eb4352f925
@ -1,6 +1,7 @@
|
||||
{ dockerTools, foodogsquaredLib, nodejs, bun, pnpm }:
|
||||
|
||||
foodogsquaredLib.buildDockerImage {
|
||||
foodogsquaredLib.buildDockerImage rec {
|
||||
name = "js-backend";
|
||||
tag = name;
|
||||
contents = [ nodejs bun pnpm ];
|
||||
}
|
||||
|
@ -2,5 +2,6 @@
|
||||
|
||||
foodogsquaredLib.buildDockerImage {
|
||||
name = "ruby-on-rails";
|
||||
tag = "ror-${ruby.version}";
|
||||
contents = [ ruby bundix mruby rails-new ];
|
||||
}
|
||||
|
@ -1,7 +1,8 @@
|
||||
{ dockerTools, foodogsquaredLib, rustc, cargo, rust-bindgen, rust-analyzer
|
||||
, nodejs }:
|
||||
|
||||
foodogsquaredLib.buildDockerImage {
|
||||
foodogsquaredLib.buildDockerImage rec {
|
||||
name = "rust-backend";
|
||||
tag = name;
|
||||
contents = [ cargo rust-bindgen rust-analyzer rustc nodejs ];
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user