chore: update docker build scripts
This commit is contained in:
@@ -8,6 +8,7 @@ command -v docker >/dev/null 2>&1 || {
|
|||||||
SCRIPT_DIR="$(readlink -f "$(dirname "$0")")"
|
SCRIPT_DIR="$(readlink -f "$(dirname "$0")")"
|
||||||
MONOREPO_ROOT="$(readlink -f "$SCRIPT_DIR/../")"
|
MONOREPO_ROOT="$(readlink -f "$SCRIPT_DIR/../")"
|
||||||
|
|
||||||
|
# Get Git information
|
||||||
APP_VERSION="$(git name-rev --tags --name-only $(git rev-parse HEAD) | head -n 1 | sed 's/\^0//')"
|
APP_VERSION="$(git name-rev --tags --name-only $(git rev-parse HEAD) | head -n 1 | sed 's/\^0//')"
|
||||||
GIT_SHA="$(git rev-parse HEAD)"
|
GIT_SHA="$(git rev-parse HEAD)"
|
||||||
|
|
||||||
@@ -15,12 +16,39 @@ echo "Building docker image for monorepo at $MONOREPO_ROOT"
|
|||||||
echo "App version: $APP_VERSION"
|
echo "App version: $APP_VERSION"
|
||||||
echo "Git SHA: $GIT_SHA"
|
echo "Git SHA: $GIT_SHA"
|
||||||
|
|
||||||
|
# Build with temporary base tag
|
||||||
docker build -f "$SCRIPT_DIR/Dockerfile" \
|
docker build -f "$SCRIPT_DIR/Dockerfile" \
|
||||||
--progress=plain \
|
--progress=plain \
|
||||||
-t "documenso/documenso:latest" \
|
-t "documenso-base" \
|
||||||
-t "documenso/documenso:$GIT_SHA" \
|
|
||||||
-t "documenso/documenso:$APP_VERSION" \
|
|
||||||
-t "ghcr.io/documenso/documenso:latest" \
|
|
||||||
-t "ghcr.io/documenso/documenso:$GIT_SHA" \
|
|
||||||
-t "ghcr.io/documenso/documenso:$APP_VERSION" \
|
|
||||||
"$MONOREPO_ROOT"
|
"$MONOREPO_ROOT"
|
||||||
|
|
||||||
|
# Handle repository tagging
|
||||||
|
if [ ! -z "$DOCKER_REPOSITORY" ]; then
|
||||||
|
echo "Using custom repository: $DOCKER_REPOSITORY"
|
||||||
|
|
||||||
|
# Add tags for custom repository
|
||||||
|
docker tag "documenso-base" "$DOCKER_REPOSITORY:latest"
|
||||||
|
docker tag "documenso-base" "$DOCKER_REPOSITORY:$GIT_SHA"
|
||||||
|
|
||||||
|
# Add version tag if available
|
||||||
|
if [ ! -z "$APP_VERSION" ] && [ "$APP_VERSION" != "undefined" ]; then
|
||||||
|
docker tag "documenso-base" "$DOCKER_REPOSITORY:$APP_VERSION"
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
echo "Using default repositories: dockerhub and ghcr.io"
|
||||||
|
|
||||||
|
# Add tags for both default repositories
|
||||||
|
docker tag "documenso-base" "documenso/documenso:latest"
|
||||||
|
docker tag "documenso-base" "documenso/documenso:$GIT_SHA"
|
||||||
|
docker tag "documenso-base" "ghcr.io/documenso/documenso:latest"
|
||||||
|
docker tag "documenso-base" "ghcr.io/documenso/documenso:$GIT_SHA"
|
||||||
|
|
||||||
|
# Add version tags if available
|
||||||
|
if [ ! -z "$APP_VERSION" ] && [ "$APP_VERSION" != "undefined" ]; then
|
||||||
|
docker tag "documenso-base" "documenso/documenso:$APP_VERSION"
|
||||||
|
docker tag "documenso-base" "ghcr.io/documenso/documenso:$APP_VERSION"
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Remove the temporary base tag
|
||||||
|
docker rmi "documenso-base"
|
||||||
|
|||||||
@@ -9,11 +9,11 @@ SCRIPT_DIR="$(readlink -f "$(dirname "$0")")"
|
|||||||
MONOREPO_ROOT="$(readlink -f "$SCRIPT_DIR/../")"
|
MONOREPO_ROOT="$(readlink -f "$SCRIPT_DIR/../")"
|
||||||
|
|
||||||
# Get the platform from environment variable or set to linux/amd64 if not set
|
# Get the platform from environment variable or set to linux/amd64 if not set
|
||||||
# quote the string to prevent word splitting
|
|
||||||
if [ -z "$PLATFORM" ]; then
|
if [ -z "$PLATFORM" ]; then
|
||||||
PLATFORM="linux/amd64"
|
PLATFORM="linux/amd64"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# Get Git information
|
||||||
APP_VERSION="$(git name-rev --tags --name-only $(git rev-parse HEAD) | head -n 1 | sed 's/\^0//')"
|
APP_VERSION="$(git name-rev --tags --name-only $(git rev-parse HEAD) | head -n 1 | sed 's/\^0//')"
|
||||||
GIT_SHA="$(git rev-parse HEAD)"
|
GIT_SHA="$(git rev-parse HEAD)"
|
||||||
|
|
||||||
@@ -21,14 +21,41 @@ echo "Building docker image for monorepo at $MONOREPO_ROOT"
|
|||||||
echo "App version: $APP_VERSION"
|
echo "App version: $APP_VERSION"
|
||||||
echo "Git SHA: $GIT_SHA"
|
echo "Git SHA: $GIT_SHA"
|
||||||
|
|
||||||
|
# Build with temporary base tag
|
||||||
docker buildx build \
|
docker buildx build \
|
||||||
-f "$SCRIPT_DIR/Dockerfile" \
|
-f "$SCRIPT_DIR/Dockerfile" \
|
||||||
--platform=$PLATFORM \
|
--platform=$PLATFORM \
|
||||||
--progress=plain \
|
--progress=plain \
|
||||||
-t "documenso/documenso:latest" \
|
-t "documenso-base" \
|
||||||
-t "documenso/documenso:$GIT_SHA" \
|
|
||||||
-t "documenso/documenso:$APP_VERSION" \
|
|
||||||
-t "ghcr.io/documenso/documenso:latest" \
|
|
||||||
-t "ghcr.io/documenso/documenso:$GIT_SHA" \
|
|
||||||
-t "ghcr.io/documenso/documenso:$APP_VERSION" \
|
|
||||||
"$MONOREPO_ROOT"
|
"$MONOREPO_ROOT"
|
||||||
|
|
||||||
|
# Handle repository tagging
|
||||||
|
if [ ! -z "$DOCKER_REPOSITORY" ]; then
|
||||||
|
echo "Using custom repository: $DOCKER_REPOSITORY"
|
||||||
|
|
||||||
|
# Add tags for custom repository
|
||||||
|
docker tag "documenso-base" "$DOCKER_REPOSITORY:latest"
|
||||||
|
docker tag "documenso-base" "$DOCKER_REPOSITORY:$GIT_SHA"
|
||||||
|
|
||||||
|
# Add version tag if available
|
||||||
|
if [ ! -z "$APP_VERSION" ] && [ "$APP_VERSION" != "undefined" ]; then
|
||||||
|
docker tag "documenso-base" "$DOCKER_REPOSITORY:$APP_VERSION"
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
echo "Using default repositories: dockerhub and ghcr.io"
|
||||||
|
|
||||||
|
# Add tags for both default repositories
|
||||||
|
docker tag "documenso-base" "documenso/documenso:latest"
|
||||||
|
docker tag "documenso-base" "documenso/documenso:$GIT_SHA"
|
||||||
|
docker tag "documenso-base" "ghcr.io/documenso/documenso:latest"
|
||||||
|
docker tag "documenso-base" "ghcr.io/documenso/documenso:$GIT_SHA"
|
||||||
|
|
||||||
|
# Add version tags if available
|
||||||
|
if [ ! -z "$APP_VERSION" ] && [ "$APP_VERSION" != "undefined" ]; then
|
||||||
|
docker tag "documenso-base" "documenso/documenso:$APP_VERSION"
|
||||||
|
docker tag "documenso-base" "ghcr.io/documenso/documenso:$APP_VERSION"
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Remove the temporary base tag
|
||||||
|
docker rmi "documenso-base"
|
||||||
|
|||||||
Reference in New Issue
Block a user