# Use an official Python runtime as a parent image
FROM python:3.8

# Install any needed packages specified in requirements.txt
RUN pip install matplotlib pandas

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