From 16fc0cc27441fc29e11f483ce4e72fc0f9120f0b Mon Sep 17 00:00:00 2001 From: Michael Samoylov Date: Tue, 25 Nov 2025 16:44:29 +0100 Subject: [PATCH] Add optional args to "just build" (#6196) --- {{cookiecutter.project_slug}}/justfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/{{cookiecutter.project_slug}}/justfile b/{{cookiecutter.project_slug}}/justfile index 38ef8dd47..6bc8ffa32 100644 --- a/{{cookiecutter.project_slug}}/justfile +++ b/{{cookiecutter.project_slug}}/justfile @@ -1,7 +1,7 @@ export COMPOSE_FILE := "docker-compose.local.yml" ## Just does not yet manage signals for subprocesses reliably, which can lead to unexpected behavior. -## Exercise caution before expanding its usage in production environments. +## Exercise caution before expanding its usage in production environments. ## For more information, see https://github.com/casey/just/issues/2473 . @@ -10,9 +10,9 @@ default: @just --list # build: Build python image. -build: +build *args: @echo "Building python image..." - @docker compose build + @docker compose build {{ "{{args}}" }} # up: Start up containers. up: