FROM python:3.8
ADD ./ /tsp
WORKDIR /tsp
CMD ["/bin/bash", "-c", "pip install -r requirements.txt && python main.py; cp -r output/* /output"]