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