7 lines
94 B
Docker

FROM python:latest
WORKDIR /app
COPY generator.py /app/
CMD ["python", "generate_files.py"]