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