25 lines
838 B
Bash
Executable File
25 lines
838 B
Bash
Executable File
TARGET_NAME="amd64-buster"
|
|
DOCKERFILE="Dockerfile.amd64.buster"
|
|
|
|
TAG_UNIQUE_ID=`git ls-tree HEAD | sha256sum | cut -c-16`
|
|
TAG_NAME="${TARGET_NAME}_${TAG_UNIQUE_ID}"
|
|
OUT_DIR="out_$TARGET_NAME"
|
|
|
|
docker pull cgutman/moonlight-packaging:$TAG_NAME
|
|
PULL_EXIT_CODE=$?
|
|
|
|
rm -rf $OUT_DIR
|
|
|
|
set -e
|
|
mkdir $OUT_DIR
|
|
|
|
if [ $PULL_EXIT_CODE -eq 0 ]; then
|
|
echo Using pre-built Docker image - cgutman/moonlight-packaging:$TAG_NAME
|
|
else
|
|
echo Pre-built image not available - building cgutman/moonlight-packaging:$TAG_NAME
|
|
docker build --pull -f $DOCKERFILE -t cgutman/moonlight-packaging:$TAG_NAME .
|
|
echo Built Docker image - cgutman/moonlight-packaging:$TAG_NAME
|
|
fi
|
|
|
|
docker run --rm --mount type=bind,source="$(pwd)"/$OUT_DIR,target=/out --mount type=bind,source="$(pwd)"/debian,target=/opt/debian -e COMMIT="$1" cgutman/moonlight-packaging:$TAG_NAME
|