2020-02-27 10:13:49 -06:00
|
|
|
ARG PYTHON_VERSION=3.8
|
|
|
|
|
FROM python:${PYTHON_VERSION}
|
|
|
|
|
|
2021-08-13 15:51:50 +05:30
|
|
|
WORKDIR /code/opensearch-py
|
2020-11-10 13:45:05 -06:00
|
|
|
COPY dev-requirements.txt .
|
2020-11-04 13:53:41 -06:00
|
|
|
RUN python -m pip install \
|
2020-11-10 13:45:05 -06:00
|
|
|
-U --no-cache-dir \
|
|
|
|
|
--disable-pip-version-check \
|
|
|
|
|
pip \
|
|
|
|
|
&& python -m pip install \
|
2020-11-04 13:53:41 -06:00
|
|
|
--no-cache-dir \
|
|
|
|
|
--disable-pip-version-check \
|
|
|
|
|
-r dev-requirements.txt
|
2020-11-10 13:45:05 -06:00
|
|
|
|
|
|
|
|
COPY . .
|
|
|
|
|
RUN python -m pip install -e .
|