- 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
8 lines
186 B
Bash
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
|