Skip to content

Commit 504ef52

Browse files
authored
Merge pull request #334 from lbedner/only-build-one
Only Build Image For One Service
2 parents 80e8df2 + 28dd49a commit 504ef52

6 files changed

Lines changed: 12 additions & 12 deletions

File tree

aegis/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
Aegis Stack CLI - Component generation and project management tools.
33
"""
44

5-
__version__ = "0.3.3"
5+
__version__ = "0.3.4"

aegis/templates/cookiecutter-aegis-project/{{cookiecutter.project_slug}}/Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
# CORE DOCKER COMMANDS
66
#=============================================================================
77

8-
build: ## Build all Docker images (safe, sequential)
9-
@echo "Building Docker images..."
10-
@docker compose --profile dev build
8+
build: ## Build Docker image
9+
@echo "Building Docker image..."
10+
@docker compose build webserver
1111

1212
serve: build ## Run all services (builds if needed)
1313
@echo "Starting services... (Press Ctrl+C to stop)"

aegis/templates/cookiecutter-aegis-project/{{cookiecutter.project_slug}}/clean-validation/Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
# CORE DOCKER COMMANDS
66
#=============================================================================
77

8-
build: ## Build all Docker images (safe, sequential)
9-
@echo "Building Docker images..."
10-
@docker compose build
8+
build: ## Build Docker image
9+
@echo "Building Docker image..."
10+
@docker compose build webserver
1111

1212
serve: build ## Run all services (builds if needed)
1313
@echo "Starting services... (Press Ctrl+C to stop)"

aegis/templates/copier-aegis-project/{{ project_slug }}/Makefile.jinja

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
# CORE DOCKER COMMANDS
66
#=============================================================================
77

8-
build: ## Build all Docker images (safe, sequential)
9-
@echo "Building Docker images..."
10-
@docker compose --profile dev build
8+
build: ## Build Docker image
9+
@echo "Building Docker image..."
10+
@docker compose build webserver
1111

1212
serve: build ## Run all services (builds if needed)
1313
@echo "Starting services... (Press Ctrl+C to stop)"

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "aegis-stack"
3-
version = "0.3.3"
3+
version = "0.3.4"
44
description = "A production-ready Python foundation for builders who refuse to wait. Try: uvx aegis-stack init my-project"
55
readme = "README.md"
66
requires-python = ">=3.11,<3.14"

uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)