From aa3661e3a7c9a7e01415a8aa43f2716732e18231 Mon Sep 17 00:00:00 2001 From: Dilawar Singh <dilawars@ncbs.res.in> Date: Fri, 2 Feb 2018 10:34:38 +0530 Subject: [PATCH] Latest version. --- DockerFiles/3.2/Dockerfile | 26 ++++++++++++++++++++++++++ DockerFiles/nightly/Dockerfile | 26 ++++++++++++++++++++++++++ 2 files changed, 52 insertions(+) create mode 100644 DockerFiles/3.2/Dockerfile create mode 100644 DockerFiles/nightly/Dockerfile diff --git a/DockerFiles/3.2/Dockerfile b/DockerFiles/3.2/Dockerfile new file mode 100644 index 00000000..1bfbcace --- /dev/null +++ b/DockerFiles/3.2/Dockerfile @@ -0,0 +1,26 @@ +FROM ubuntu:16.04 +MAINTAINER Dilawar Singh <dilawar.s.rajput@gmail.com> + +# If you are behind proxy, uncomment the following lines with appropriate +# values. +ENV http_proxy http://proxy.ncbs.res.in:3128 +ENV https_proxy http://proxy.ncbs.res.in:3128 + +RUN apt-get update +RUN apt-get install -y wget x11-apps xorg +RUN apt-get install -y python-matplotlib python-numpy +RUN apt-get install -y python-pip python-networkx graphviz python-scipy +RUN apt-get install -y python-pygraphviz +RUN pip install python-libsbml pyneuroml + +# Install the package from STABLE channel. +RUN wget -nv https://download.opensuse.org/repositories/home:moose/xUbuntu_16.04/Release.key -O /tmp/Release.key +RUN apt-key add - < /tmp/Release.key +RUN sh -c "echo 'deb http://download.opensuse.org/repositories/home:/moose/xUbuntu_16.04/ /' > /etc/apt/sources.list.d/moose.list" +RUN apt-get update && apt-get install -y --allow-unauthenticated moose + +RUN adduser --disabled-password --gecos '' mooser + +USER mooser +ENV HOME /home/mooser +CMD /usr/bin/xterm diff --git a/DockerFiles/nightly/Dockerfile b/DockerFiles/nightly/Dockerfile new file mode 100644 index 00000000..99ca75c4 --- /dev/null +++ b/DockerFiles/nightly/Dockerfile @@ -0,0 +1,26 @@ +FROM ubuntu:16.04 +MAINTAINER Dilawar Singh <dilawar.s.rajput@gmail.com> + +# If you are behind proxy, uncomment the following lines with appropriate +# values. +ENV http_proxy http://proxy.ncbs.res.in:3128 +ENV https_proxy http://proxy.ncbs.res.in:3128 + +RUN apt-get update +RUN apt-get install -y wget x11-apps xorg +RUN apt-get install -y python-matplotlib python-numpy +RUN apt-get install -y python-pip python-networkx graphviz python-scipy +RUN apt-get install -y python-pygraphviz +RUN pip install python-libsbml pyneuroml + +# Install the package from STABLE channel. +RUN wget -nv https://download.opensuse.org/repositories/home:moose/xUbuntu_16.04/Release.key -O /tmp/Release.key +RUN apt-key add - < /tmp/Release.key +RUN sh -c "echo 'deb http://download.opensuse.org/repositories/home:/moose/xUbuntu_16.04/ /' > /etc/apt/sources.list.d/moose.list" +RUN apt-get update && apt-get install -y --allow-unauthenticated moose-nightly + +RUN adduser --disabled-password --gecos '' mooser + +USER mooser +ENV HOME /home/mooser +CMD /usr/bin/xterm -- GitLab