Files
enigma/build-image.sh
capitano 6a39457989
Some checks failed
Build and Push Docker Image / build (push) Has been cancelled
Add Enigma BBS deployment files
2026-04-06 11:07:27 +02:00

22 lines
616 B
Bash
Executable File

# BuildEnigmaBBS
# Questo script costruisce l'immagine Enigma BBS localmente
# Requires: Docker
set -e
cd "$(dirname "$0")"
echo "Building Enigma BBS Docker image..."
docker build -t enigmabbs:latest \
--build-arg TARGETPLATFORM=linux/amd64 \
--build-arg BUILDPLATFORM=linux/amd64 \
--build-arg TARGETOS=linux \
--build-arg BUILD_BRANCH=master \
https://github.com/NuSkooler/enigma-bbs.git
echo "Build complete! Image: enigmabbs:latest"
echo ""
echo "To push to your registry:"
echo " docker tag enigmabbs:latest <your-registry>/enigmabbs:latest"
echo " docker push <your-registry>/enigmabbs:latest"