From af8fcce57fc87e1f54872b2944838e8c1e4f0c8e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vin=C3=ADcius=20Miguel?= <36349314+vrmiguel@users.noreply.github.com> Date: Mon, 16 Dec 2024 18:51:43 -0300 Subject: [PATCH] CLI: use `--no-cache` for `docker build` --- cli/Cargo.toml | 2 +- cli/src/commands/containers.rs | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 609441c5..e895d018 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pg-trunk" -version = "0.15.6" +version = "0.15.7" edition = "2021" authors = ["Ian Stanton", "Vinícius Miguel", "David E. Wheeler"] description = "A package manager for PostgreSQL extensions" diff --git a/cli/src/commands/containers.rs b/cli/src/commands/containers.rs index 81763d00..b79b89fd 100644 --- a/cli/src/commands/containers.rs +++ b/cli/src/commands/containers.rs @@ -368,6 +368,7 @@ pub async fn build_image( t: &image_name.clone(), rm: true, pull: true, + nocache: true, buildargs: build_args, ..Default::default() };