mirror of
https://github.com/datahub-project/datahub.git
synced 2025-08-10 02:08:14 +00:00

Merges in changes from our ES7 branch, and drops support for ES5. This is a breaking change due to the upgrade, we have a ES5 branch at the commit before this.
5 lines
121 B
Docker
5 lines
121 B
Docker
FROM python:3.8
|
|
COPY . .
|
|
RUN pip install --upgrade pip
|
|
RUN pip install elasticsearch
|
|
ENTRYPOINT ["python", "transfer.py"] |