mirror of
https://github.com/elastic/eland.git
synced 2025-07-11 00:02:14 +08:00
11 lines
154 B
Docker
11 lines
154 B
Docker
ARG PYTHON_VERSION=3.7
|
|
FROM python:${PYTHON_VERSION}
|
|
|
|
WORKDIR /code/eland
|
|
COPY requirements-dev.txt .
|
|
RUN pip install -r requirements-dev.txt
|
|
|
|
COPY . .
|
|
|
|
|