| 1 | FROM ubuntu:14.04
|
|---|
| 2 | RUN apt-get -y update && apt-get install -y \
|
|---|
| 3 | libblas3 \
|
|---|
| 4 | libboost-filesystem1.54.0 \
|
|---|
| 5 | libboost-iostreams1.54.0 \
|
|---|
| 6 | libboost-program-options1.54.0 \
|
|---|
| 7 | libboost-python1.54.0 \
|
|---|
| 8 | libboost-serialization1.54.0 \
|
|---|
| 9 | libboost-system1.54.0 \
|
|---|
| 10 | libboost-thread1.54.0 \
|
|---|
| 11 | libgfortran3 \
|
|---|
| 12 | libgsl0ldbl \
|
|---|
| 13 | liblapack3 \
|
|---|
| 14 | libopenmpi1.6 \
|
|---|
| 15 | libpython2.7 \
|
|---|
| 16 | libqt4-opengl \
|
|---|
| 17 | libqtcore4 \
|
|---|
| 18 | libqtgui4 \
|
|---|
| 19 | libqwt5-qt4 \
|
|---|
| 20 | mpi-default-bin \
|
|---|
| 21 | openmpi-bin \
|
|---|
| 22 | openmpi-common \
|
|---|
| 23 | units
|
|---|
| 24 | COPY libqt4-3d_1.0-tp2_amd64.deb /tmp
|
|---|
| 25 | COPY molecuilder_1.6.0-1_amd64.deb /tmp
|
|---|
| 26 | RUN dpkg -i /tmp/libqt4-3d_1.0-tp2_amd64.deb && \
|
|---|
| 27 | dpkg -i /tmp/molecuilder_1.6.0-1_amd64.deb
|
|---|
| 28 | ENV OMPI_MCA_plm_rsh_agent /bin/false
|
|---|
| 29 |
|
|---|