Files
the-nexus/Dockerfile
Alexander Whitestone 3b77a3aa77 fix: closes #696
2026-04-15 21:24:01 -04:00

22 lines
418 B
Docker

FROM python:3.11-slim
WORKDIR /app
# Install Python deps
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt websockets
# Backend
COPY nexus/ nexus/
COPY server.py ./
# Frontend assets referenced by index.html
COPY index.html help.html style.css app.js service-worker.js manifest.json ./
# Config/data
COPY portals.json vision.json robots.txt ./
EXPOSE 8765
CMD ["python3", "server.py"]