Picsur/support/build.sh
2022-09-11 16:35:49 +02:00

42 lines
951 B
Bash
Executable file

#!/bin/bash
PACKAGE_URL="ghcr.io/rubikscraft/picsur"
if [ "$1" == "alpha" ]; then
PACKAGE_URL="$PACKAGE_URL-alpha"
elif [ "$1" == "stable" ]; then
true
else
echo "Usage: $0 [alpha|stable]"
exit 1
fi
# Go to this script
cd "$(dirname "${BASH_SOURCE[0]}")"
# Install binfmt
docker run --privileged --rm tonistiigi/binfmt --install all
# Read current version from ../package.json
VERSION=$(cat ../package.json | grep version | head -1 | awk -F: '{ print $2 }' | sed 's/[",]//g' | tr -d '[[:space:]]')
echo "Building version $VERSION"
docker buildx create --append --use --name picsur
docker buildx build \
--push \
-t "$PACKAGE_URL-stage1:$VERSION" \
-t "$PACKAGE_URL-stage1:latest" \
-f ./picsur-stage1.Dockerfile ..
docker buildx build \
--platform linux/amd64,linux/arm64 \
--push \
-t "$PACKAGE_URL:$VERSION" \
-t "$PACKAGE_URL:latest" \
-f ./picsur-stage2.Dockerfile ..
echo "Done pushing $PACKAGE_URL:$VERSION"