3a3e366de5
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
8 lines
335 B
Docker
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"]
|