migration Part 1.

This commit is contained in:
serversdwn
2026-01-09 05:39:43 +00:00
parent 991aaca34b
commit 16eb9eb1fe
92 changed files with 262 additions and 15657 deletions

24
Dockerfile.terraview Normal file
View File

@@ -0,0 +1,24 @@
FROM python:3.11-slim
# Set working directory
WORKDIR /app
# Install system dependencies
RUN apt-get update && \
apt-get install -y --no-install-recommends iputils-ping curl && \
rm -rf /var/lib/apt/lists/*
# Copy requirements first for better caching
COPY requirements.txt .
# Install dependencies
RUN pip install --no-cache-dir -r requirements.txt
# Copy application code
COPY . .
# Expose Terra-View UI port
EXPOSE 8001
# Run Terra-View (UI + orchestration)
CMD ["python3", "-m", "app.main"]