mirror of
https://github.com/stellarshenson/stellars-jupyterhub-ds.git
synced 2026-03-08 06:00:29 +00:00
- 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
14 lines
250 B
Bash
Executable File
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 "$@"
|