FROM python:3.9-alpine

RUN pip install websockets

COPY app.py .

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