Files
opensearch-pyd/.ci/Dockerfile
T
github-actions[bot] 21f25419eb [7.x] Change 'make.sh release' to 'make.sh assemble'
Co-authored-by: Seth Michael Larson <seth.larson@elastic.co>
2020-11-10 13:45:05 -06:00

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 .