Skip to content

Commit 68a2913

Browse files
committed
Add --rebuild flag to force rebuilding the image
Currently, `rails-new` must be released to use any newly released versions of Ruby/Rails by default. To address this, I'd like to remove the fallback versions of Ruby/Rails in the CLI arguments. However, this will mean that the image name no longer contains the Rails version, and that can lead to a stale Rails version when running `rails-new` if it has been previously built. This commit addresses that by providing a `--rebuild` option which forces the container to be rebuilt and ensures the latest version of Rails is installed and used.
1 parent 72dca6a commit 68a2913

File tree

3 files changed

+12
-3
lines changed

3 files changed

+12
-3
lines changed

src/docker_client.rs

+8-3
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,16 @@ impl DockerClient {
88
rails_version: &str,
99
user_id: Option<u32>,
1010
group_id: Option<u32>,
11+
rebuild: bool,
1112
) -> Command {
1213
let mut command = Command::new("docker");
1314

1415
command.arg("build");
1516

17+
if rebuild {
18+
command.arg("--no-cache");
19+
}
20+
1621
Self::set_build_arg(&mut command, "RUBY_VERSION", ruby_version);
1722
Self::set_build_arg(&mut command, "RAILS_VERSION", rails_version);
1823

@@ -116,7 +121,7 @@ mod tests {
116121

117122
#[test]
118123
fn build_image() {
119-
let command = DockerClient::build_image("3.2.3", "7.1.3", None, None);
124+
let command = DockerClient::build_image("3.2.3", "7.1.3", None, None, false);
120125

121126
assert_eq!(command.get_program(), "docker");
122127

@@ -139,7 +144,7 @@ mod tests {
139144

140145
#[test]
141146
fn build_image_with_user_id() {
142-
let command = DockerClient::build_image("3.2.3", "7.1.3", Some(1000), None);
147+
let command = DockerClient::build_image("3.2.3", "7.1.3", Some(1000), None, false);
143148

144149
assert_eq!(command.get_program(), "docker");
145150

@@ -164,7 +169,7 @@ mod tests {
164169

165170
#[test]
166171
fn build_image_with_group_id() {
167-
let command = DockerClient::build_image("3.2.3", "7.1.3", None, Some(1000));
172+
let command = DockerClient::build_image("3.2.3", "7.1.3", None, Some(1000), false);
168173

169174
assert_eq!(command.get_program(), "docker");
170175

src/main.rs

+2
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ fn main() {
1919

2020
let ruby_version = cli.ruby_version;
2121
let rails_version = cli.rails_version;
22+
let rebuild = cli.rebuild;
2223

2324
// Run docker build --build-arg RUBY_VERSION=$RUBY_VERSION --build-arg RAILS_VERSION=$RAILS_VERSION -t rails-new-$RUBY_VERSION-$RAILS_VERSION
2425
// passing the content of DOCKERFILE to the command stdin
@@ -27,6 +28,7 @@ fn main() {
2728
&rails_version,
2829
os_specific::get_user_id(),
2930
os_specific::get_group_id(),
31+
rebuild,
3032
)
3133
.spawn()
3234
.expect("Failed to execute process");

src/rails_new.rs

+2
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ pub struct Cli {
1010
pub ruby_version: String,
1111
#[clap(long, short = 'r', default_value = "8.0.1")]
1212
pub rails_version: String,
13+
#[clap(long)]
14+
pub rebuild: bool,
1315

1416
#[command(subcommand)]
1517
pub command: Option<Commands>,

0 commit comments

Comments
 (0)