FROM python:3.7.2
MAINTAINER linzecong
ADD . ./CrawlingServer
WORKDIR /CrawlingServer
RUN pip install -r requirements.txt
CMD ["python", "main.py"]
