1 2 3 4 5
FROM python:3.13-slim WORKDIR /app RUN pip install --no-cache-dir requests COPY . . CMD ["python3", "-u", "run_suite.py"]