mirror of
https://github.com/elastic/eland.git
synced 2025-07-11 00:02:14 +08:00
* Add Buildkite pipeline to push Docker image * Fix lint * Fix Read the Docs build * Replace distutils with packaging
14 lines
379 B
Docker
14 lines
379 B
Docker
FROM python:3.10-slim-bookworm@sha256:d364435d339ad318ac4c533b9fbe709739f9ba006b0721fd25e8592d0bb857cb
|
|
|
|
RUN apt-get update && \
|
|
apt-get install -y build-essential pkg-config cmake \
|
|
libzip-dev libjpeg-dev && \
|
|
apt-get clean
|
|
|
|
ADD . /eland
|
|
WORKDIR /eland
|
|
|
|
RUN python3 -m pip install --no-cache-dir --disable-pip-version-check .[all]
|
|
|
|
CMD ["/bin/sh"]
|