mirror of
https://github.com/elastic/eland.git
synced 2025-07-11 00:02:14 +08:00
11 lines
189 B
Docker
11 lines
189 B
Docker
ARG PYTHON_VERSION=3.9
|
|
FROM python:${PYTHON_VERSION}
|
|
|
|
ENV FORCE_COLOR=1
|
|
|
|
WORKDIR /code/eland
|
|
# https://github.com/wntrblm/nox/issues/930
|
|
RUN python -m pip install nox==2024.10.09
|
|
|
|
COPY . .
|