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