Files
opensearch-pyd/.ci/Dockerfile.client
T
Rushi Agrawal 87cf44ccd6 Rename dockerfiles for clarity
also rename image name to just 'odfe'

Signed-off-by: Rushi Agrawal <[email protected]>
2021-08-13 11:19:49 +05:30

17 lines
364 B
Docker

ARG PYTHON_VERSION=3.8
FROM python:${PYTHON_VERSION}
WORKDIR /code/elasticsearch-py
COPY dev-requirements.txt .
RUN python -m pip install \
-U --no-cache-dir \
--disable-pip-version-check \
pip \
&& python -m pip install \
--no-cache-dir \
--disable-pip-version-check \
-r dev-requirements.txt
COPY . .
RUN python -m pip install -e .