Files
2026-07-17 12:53:54 -04:00

8 lines
335 B
Docker

# wwf-recorder — RTDS tape silo. One pip dep (websocket-client), no git, no
# repo clone: the recorder ships its code in the image (a tape must not
# depend on GitHub being up to boot).
FROM python:3.12-slim
RUN pip install --no-cache-dir websocket-client
COPY recorder/recorder.py /recorder.py
CMD ["python3", "-u", "/recorder.py"]