Files
the-nexus/Dockerfile
Alexander Whitestone 0458342622
Some checks failed
CI / test (pull_request) Failing after 9s
CI / validate (pull_request) Failing after 16s
Review Approval Gate / verify-review (pull_request) Failing after 2s
fix: closes #696
2026-04-12 19:25:39 -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"]