FROM python:latest

WORKDIR /app

COPY generator.py /app/

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