mirror of
https://github.com/euzu/tuliprox.git
synced 2026-09-22 09:02:17 +02:00
63 lines
1.9 KiB
Bash
Executable File
63 lines
1.9 KiB
Bash
Executable File
#!/bin/bash
|
|
set -euo pipefail
|
|
|
|
source "${HOME}/.ghcr.io"
|
|
|
|
PLATFORM=x86_64-unknown-linux-musl
|
|
|
|
# Check if the binary exists
|
|
if [ ! -f "./target/${PLATFORM}/release/m3u-filter" ]; then
|
|
echo "Error: Static binary '../target/${PLATFORM}/release/m3u-filter' does not exist."
|
|
exit 1
|
|
fi
|
|
|
|
# Check if the frontend build directory exists
|
|
if [ ! -d "./frontend/build" ]; then
|
|
echo "Error: Web directory '../frontend/build' does not exist."
|
|
exit 1
|
|
fi
|
|
|
|
# Prepare Docker build context
|
|
cd ./docker
|
|
cp ../target/${PLATFORM}/release/m3u-filter .
|
|
rm -rf ./web
|
|
cp -r ../frontend/build ./web
|
|
|
|
# Get the version from the binary
|
|
VERSION=$(./m3u-filter -V | sed 's/m3u-filter *//')
|
|
if [ -z "${VERSION}" ]; then
|
|
echo "Error: Failed to determine the version from the binary."
|
|
exit 1
|
|
fi
|
|
|
|
echo "Building Docker images for version ${VERSION}"
|
|
|
|
SCRATCH_IMAGE_NAME=m3u-filter
|
|
ALPINE_IMAGE_NAME=m3u-filter-alpine
|
|
|
|
# Build scratch image and tag as "latest"
|
|
docker build -f Dockerfile-manual -t ghcr.io/euzu/${SCRATCH_IMAGE_NAME}:"${VERSION}" --target scratch-final .
|
|
docker tag ghcr.io/euzu/${SCRATCH_IMAGE_NAME}:"${VERSION}" ghcr.io/euzu/${SCRATCH_IMAGE_NAME}:latest
|
|
|
|
# Build alpine image and tag as "latest"
|
|
docker build -f Dockerfile-manual -t ghcr.io/euzu/${ALPINE_IMAGE_NAME}:"${VERSION}" --target alpine-final .
|
|
docker tag ghcr.io/euzu/${ALPINE_IMAGE_NAME}:"${VERSION}" ghcr.io/euzu/${ALPINE_IMAGE_NAME}:latest
|
|
|
|
echo "Logging into GitHub Container Registry..."
|
|
docker login ghcr.io -u euzu -p "${GHCR_IO_TOKEN}"
|
|
|
|
# Push scratch
|
|
docker push ghcr.io/euzu/${SCRATCH_IMAGE_NAME}:"${VERSION}"
|
|
docker push ghcr.io/euzu/${SCRATCH_IMAGE_NAME}:latest
|
|
|
|
# Push alpine
|
|
docker push ghcr.io/euzu/${ALPINE_IMAGE_NAME}:"${VERSION}"
|
|
docker push ghcr.io/euzu/${ALPINE_IMAGE_NAME}:latest
|
|
|
|
# Clean up
|
|
echo "Cleaning up build artifacts..."
|
|
rm -rf ./web
|
|
rm -f ./m3u-filter
|
|
|
|
echo "Docker images for version ${VERSION} have been successfully built, tagged, and pushed."
|