eirescope/docker-entrypoint.sh
root 0eb17a3b37 add Docker containerization and Umami analytics support
- Dockerfile with python:3.11-slim, whois and dnsutils
- docker-entrypoint.sh for container startup
- .dockerignore to keep image lean
- Umami analytics script in base.html (conditional)
- Inject EIRESCOPE_UMAMI_WEBSITE_ID via Jinja2 globals
2026-03-04 22:38:34 +01:00

8 lines
186 B
Bash

#!/bin/bash
set -e
# Ensure tmp directory exists for ephemeral SQLite database
mkdir -p /tmp
echo "Starting EireScope OSINT Dashboard..."
exec python run.py --host 0.0.0.0 --port 5000