Skip to content
Snippets Groups Projects
pycif_py36.Dockerfile 354 B
Newer Older
# Build a Docker image that contains pyCIF and all requirements.
FROM python:3.6

RUN apt-get update \
	&& apt-get install -y libgdal-dev gdal-bin libeccodes0 graphviz \
	&& apt-get autoclean && apt-get clean \
	&& pip install sphinx sphinxcontrib-plantuml graphviz;

COPY . /tmp/CIF

RUN cd /tmp/CIF && pip install ".[dev, test]";

ENTRYPOINT ["pycif"]