Files
stellarshenson cc05843519 fix: Docker build pipeline - uv builder, disable Bake, pass CLI args
- rewrite builder stage to use uv with venv for isolated builds and tests
- disable COMPOSE_BAKE (created manifest lists instead of plain images,
  causing latest tag to point to stale cached image despite build logs
  showing successful installation)
- pass "$@" from build scripts to docker compose build so --no-cache
  and other CLI flags actually reach Docker (previously silently ignored)
- fix shared volume comment: read-write not read-only
2026-02-09 22:40:59 +01:00

14 lines
250 B
Bash
Executable File

#!/bin/sh
export DOCKER_DEFAULT_PLATFORM=linux/amd64
export COMPOSE_BAKE=false
# Source project.env to get VERSION
set -a
. ../project.env
set +a
# Export VERSION for docker compose build
export VERSION
docker compose -f ../compose.yml build "$@"