FROM python:3.13-alpine

RUN pip install websockets

COPY app.py .

CMD ["python", "app.py"]
