FROM python:3.11-slim

WORKDIR /app

RUN pip install --no-cache-dir requests

COPY client.py .

CMD ["python3", "client.py"]
