FROM python:3.12-slim WORKDIR /build COPY requirements.txt . RUN pip3 install -r requirements.txt COPY . . CMD ["python", "build.py"]