add initial Dockerfile
parent
c16f2b7ab9
commit
3c41d4d750
@ -0,0 +1,11 @@
|
|||||||
|
FROM python:3
|
||||||
|
|
||||||
|
WORKDIR /data
|
||||||
|
|
||||||
|
COPY requirements.txt ./
|
||||||
|
|
||||||
|
RUN pip install --no-cache-dir --requirement requirements.txt
|
||||||
|
|
||||||
|
COPY scrape.py template.html ./
|
||||||
|
|
||||||
|
CMD ["python", "scrape.py"]
|
Loading…
Reference in New Issue