[7.x] Actually dockerize repo, update build-dists for release manager

This commit is contained in:
Seth Michael Larson
2020-11-04 13:58:42 -06:00
parent acc37ea1e4
commit 708e282eaf
13 changed files with 101 additions and 21 deletions
+6 -3
View File
@@ -1,7 +1,10 @@
ARG PYTHON_VERSION=3.8
FROM python:${PYTHON_VERSION}
COPY dev-requirements.txt /tmp
RUN python -m pip install -r /tmp/dev-requirements.txt
WORKDIR /code/elasticsearch-py
COPY . .
RUN python -m pip install \
--no-cache-dir \
--disable-pip-version-check \
-e . \
-r dev-requirements.txt