Files
the-nexus/Dockerfile
2026-03-26 16:43:40 +00:00

15 lines
214 B
Docker

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