19 lines
693 B
Docker
19 lines
693 B
Docker
|
FROM debian:stretch
|
||
|
|
||
|
LABEL maintainer="markus.rosenstihl@pkm.tu-darmstadt.de"
|
||
|
|
||
|
ARG DEBIAN_FRONTEND=noninteractive
|
||
|
COPY sources.list /etc/apt/sources.list
|
||
|
COPY dependencies.txt dependencies.txt
|
||
|
COPY 90damaris.conf /etc/environment.d/
|
||
|
RUN apt-get -y update
|
||
|
RUN apt-get -y dist-upgrade
|
||
|
RUN apt-get -y install apt-utils git ipython
|
||
|
RUN apt-get -y install python-gtk2 python-numpy python-scipy python-tables python-matplotlib python-xdg python-gtksourceview2
|
||
|
RUN git clone https://gitea.pkm.physik.tu-darmstadt.de/IPKM/python-damaris.git
|
||
|
RUN cd python-damaris && python setup.py install --home=/opt/damaris
|
||
|
#RUN python -m pip install --upgrade pip
|
||
|
#RUN pip2 install -r dependencies.txt
|
||
|
|
||
|
#COPY . .
|