Initial commit: Who Did It Clue character preference collector

Made-with: Cursor
This commit is contained in:
2026-03-04 22:00:59 -05:00
commit 9b71099658
27 changed files with 4048 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
#!/bin/bash
# Docker Build Script for Linux/Mac
# Builds the Docker image for docker-registry.kolpacksoftware.com
set -e
IMAGE_NAME="${IMAGE_NAME:-clue-picker}"
TAG="${TAG:-latest}"
REGISTRY="${REGISTRY:-docker-registry.kolpacksoftware.com}"
FULL_IMAGE_NAME="$REGISTRY/$IMAGE_NAME:$TAG"
echo "Building Docker image: $FULL_IMAGE_NAME"
docker build -t "$FULL_IMAGE_NAME" .
echo "Build successful!"
echo ""
echo "To push the image, run:"
echo " docker push $FULL_IMAGE_NAME"
echo ""
echo "Or use the docker-push.sh script"