eland/Dockerfile
Quentin Pradet 352e31ed14
Add Buildkite pipeline to push Docker image (#613)
* Add Buildkite pipeline to push Docker image

* Fix lint

* Fix Read the Docs build

* Replace distutils with packaging
2023-10-03 14:39:54 +02:00

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"]