##// END OF EJS Templates
Test commit jroIO_param.py change letter D by M
Test commit jroIO_param.py change letter D by M

File last commit:

r1118:b9a9b35be35d
r1216:cef0eac4db4e v2.3-devel
Show More
Dockerfile
26 lines | 534 B | text/x-dockerfile-config | DockerLexer
FROM python:2.7-slim
RUN apt-get clean && apt-get update && apt-get install -y --no-install-recommends \
git \
gcc \
libpng-dev \
libfreetype6-dev \
libopenblas-dev \
liblapack-dev \
libatlas-base-dev \
libssl-dev \
libhdf5-dev \
&& git clone --branch v2.3 --depth 1 \
http://jro-dev.igp.gob.pe/rhodecode/schain \
&& pip install numpy \
&& cd schain \
&& pip install . \
&& rm -rf * \
&& apt-get purge -y --auto-remove git gcc \
&& rm -rf /var/lib/apt/lists/*
ENV BACKEND="Agg"
VOLUME /data
ENTRYPOINT ["schain"]