eland/Dockerfile
Josh Devins df51f8af07
Document how to install transitive binary dependencies, add repo Dockerfile
Co-authored-by: Seth Michael Larson <seth.larson@elastic.co>
2021-10-28 12:05:39 -05:00

15 lines
355 B
Docker

FROM debian:11.1
RUN apt-get update && \
apt-get install -y build-essential pkg-config cmake \
python3-dev python3-pip python3-venv \
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"]