devcontainers: add tag

It's for ease of updating containers in CI.
This commit is contained in:
Gabriel Arazas 2025-03-19 13:58:56 +08:00
parent ebc6ead5e3
commit eb4352f925
No known key found for this signature in database
GPG Key ID: 62104B43D00AA360
3 changed files with 5 additions and 2 deletions

View File

@ -1,6 +1,7 @@
{ dockerTools, foodogsquaredLib, nodejs, bun, pnpm }:
foodogsquaredLib.buildDockerImage {
foodogsquaredLib.buildDockerImage rec {
name = "js-backend";
tag = name;
contents = [ nodejs bun pnpm ];
}

View File

@ -2,5 +2,6 @@
foodogsquaredLib.buildDockerImage {
name = "ruby-on-rails";
tag = "ror-${ruby.version}";
contents = [ ruby bundix mruby rails-new ];
}

View File

@ -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 ];
}