mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-04-19 00:19:11 +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 }:
|
{ dockerTools, foodogsquaredLib, nodejs, bun, pnpm }:
|
||||||
|
|
||||||
foodogsquaredLib.buildDockerImage {
|
foodogsquaredLib.buildDockerImage rec {
|
||||||
name = "js-backend";
|
name = "js-backend";
|
||||||
|
tag = name;
|
||||||
contents = [ nodejs bun pnpm ];
|
contents = [ nodejs bun pnpm ];
|
||||||
}
|
}
|
||||||
|
@ -2,5 +2,6 @@
|
|||||||
|
|
||||||
foodogsquaredLib.buildDockerImage {
|
foodogsquaredLib.buildDockerImage {
|
||||||
name = "ruby-on-rails";
|
name = "ruby-on-rails";
|
||||||
|
tag = "ror-${ruby.version}";
|
||||||
contents = [ ruby bundix mruby rails-new ];
|
contents = [ ruby bundix mruby rails-new ];
|
||||||
}
|
}
|
||||||
|
@ -1,7 +1,8 @@
|
|||||||
{ dockerTools, foodogsquaredLib, rustc, cargo, rust-bindgen, rust-analyzer
|
{ dockerTools, foodogsquaredLib, rustc, cargo, rust-bindgen, rust-analyzer
|
||||||
, nodejs }:
|
, nodejs }:
|
||||||
|
|
||||||
foodogsquaredLib.buildDockerImage {
|
foodogsquaredLib.buildDockerImage rec {
|
||||||
name = "rust-backend";
|
name = "rust-backend";
|
||||||
|
tag = name;
|
||||||
contents = [ cargo rust-bindgen rust-analyzer rustc nodejs ];
|
contents = [ cargo rust-bindgen rust-analyzer rustc nodejs ];
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user