This repository has been archived by the owner on Aug 15, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 731
/
Dockerfile
57 lines (43 loc) · 1.52 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# VERSION 0.3
# AUTHOR: DSSTNE Docker <dsstne-docker@amazon.com>
# DESCRIPTION: Docker image for Amazon DSSTNE
FROM nvidia/cuda:9.1-cudnn7-devel-ubuntu16.04
# Suppress interactive prompts while installing base packages
ENV DEBIAN_FRONTEND=noninteractive
# Add repositories and install base packages
RUN apt-get update && \
apt-get install -y build-essential libcppunit-dev libatlas-base-dev pkg-config python \
software-properties-common unzip wget && \
add-apt-repository ppa:george-edison55/cmake-3.x && \
apt-get update && \
apt-get install -y cmake && \
apt-get clean
# Install OpenMPI
RUN apt-get install -y libopenmpi-dev
# Install JSONCPP
RUN apt-get install -y libjsoncpp-dev
# Install hdf5
RUN apt-get install -y libhdf5-dev
# Install zlib
RUN apt-get install -y zlib1g-dev
# Install netcdf
RUN apt-get install -y libnetcdf-dev
# Install netcdf-c++
RUN apt-get install -y libnetcdf-c++4-dev
# Installing CUBG
RUN cd /tmp && \
wget https://github.com/NVlabs/cub/archive/1.5.2.zip && \
unzip 1.5.2.zip && \
cp -rf cub-1.5.2/cub/ /usr/local/include/ && \
rm -rf /tmp/*
# Ensure OpenMPI is available on path
ENV PATH=/usr/local/openmpi/bin/:${PATH} \
LD_LIBRARY_PATH=/usr/local/lib/:/usr/local/openmpi/lib/:${LD_LIBRARY_PATH}
# Build latest version of DSSTNE from source
COPY . /opt/amazon/dsstne
RUN cd /opt/amazon/dsstne && \
make install
# Cleanup
RUN rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
# Add DSSTNE binaries to PATH
ENV PATH=/opt/amazon/dsstne/bin/:${PATH}