##// END OF EJS Templates
Add modules for interactive plots and upload data
Add modules for interactive plots and upload data

File last commit:

r1:c98dcec9786f
r2:98d277d09dd7
Show More
Dockerfile
16 lines | 469 B | text/x-dockerfile-config | DockerLexer
FROM python:3.7-slim
RUN mkdir /madrigal
WORKDIR /madrigal
ADD required_modules.txt ./required_modules.txt
RUN apt clean && apt update && apt install -y --no-install-recommends \
gcc gfortran build-essential automake autotools-dev autoconf m4 libtool hdf5-tools\
&& rm -rf /var/lib/apt/lists/*\
&& pip install -r required_modules.txt && pip install django-bootstrap3
COPY . ./
RUN ln -s /usr/local/bin/python3.7 /madrigal/bin/python && bash installMadrigal