forked from llnl/RAJA
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
23 lines (16 loc) · 685 Bytes
/
Dockerfile
File metadata and controls
23 lines (16 loc) · 685 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
###############################################################################
# Copyright (c) 2016-19, Lawrence Livermore National Security, LLC
# and RAJA project contributors. See the RAJA/COPYRIGHT file for details.
#
# SPDX-License-Identifier: (BSD-3-Clause)
###############################################################################
#
#Builds and installs RAJA using the gcc8 compiler
#
FROM rajaorg/compiler:gcc8
MAINTAINER RAJA Development Team <raja-dev@llnl.gov>
COPY --chown=raja:raja . /home/raja/workspace
WORKDIR /home/raja/workspace
RUN mkdir build && cd build && cmake -DENABLE_CUDA=OFF ..
RUN cd build && sudo make -j 3 && sudo make install
CMD ["bash"]