mirror of
https://github.com/elastic/eland.git
synced 2025-07-11 00:02:14 +08:00
* [CI] Adds Buildkite configuration * Removes GitHub Actions * Moves lint and docs tasks to Buildkite
8 lines
114 B
Docker
8 lines
114 B
Docker
ARG PYTHON_VERSION=3.9
|
|
FROM python:${PYTHON_VERSION}
|
|
|
|
WORKDIR /code/eland
|
|
RUN python -m pip install nox
|
|
|
|
COPY . .
|