FROM python:3.10-slim # Install dependencies RUN apt-get update && apt-get install -y \ curl unzip default-jdk \ && pip install --no-cache-dir selenium appium-python-client # Set working directory WORKDIR /tests # Copy test scripts (bind-mounted or pulled from repo) COPY ./test_script.py /tests/test_script.py # Run the test script CMD ["python", "test_script.py"]