- btc 26.0 - cln 24.0 - vls 0.11.0 - txoo 0.6.4 Signed-off-by: Lakshya Singh <lakshay.singh1108@gmail.com>
11 lines
312 B
Bash
Executable File
11 lines
312 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -ex
|
|
|
|
SERVICE=$1
|
|
|
|
docker buildx create --name=$SERVICE --use
|
|
cd $SERVICE
|
|
|
|
docker build --load --builder=$SERVICE --cache-to type=registry,ref=$CACHE/$SERVICE:$CACHE_TAG --cache-from $CACHE/$SERVICE:$CACHE_TAG -t $SERVICE:$IMAGE_TAG $(grep -v '^#' ../.env | sed 's/^/--build-arg /' | tr '\n' ' ') .
|