Files
the-nexus/Dockerfile
Bezalel 6ae9547145
Some checks failed
Deploy Nexus / deploy (push) Has been cancelled
CI / test (pull_request) Failing after 8s
CI / validate (pull_request) Failing after 3s
fix(ci): repair JSON validation syntax, add repo-truth guard, copy robots.txt/index.html in Dockerfile
2026-04-07 14:24:10 +00:00

17 lines
262 B
Docker

FROM python:3.11-slim
WORKDIR /app
# Install Python deps
COPY nexus/ nexus/
COPY server.py .
COPY portals.json vision.json ./
COPY robots.txt ./
COPY index.html help.html ./
RUN pip install --no-cache-dir websockets
EXPOSE 8765
CMD ["python3", "server.py"]