Create Dockerfile

This commit is contained in:
Marian Steinbach 2019-04-11 22:34:14 +02:00
parent d2e0d1e797
commit 7ee40d0772

7
Dockerfile Normal file
View file

@ -0,0 +1,7 @@
FROM python:3.7-stretch
RUN pip install google-cloud-datastore==1.7.3 elasticsearch==6.3.1
COPY indexer.py /
ENTRYPOINT ["python", "/indexer.py"]