forked from marc1uk/GDConcMeasure
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile.base
More file actions
32 lines (25 loc) · 766 Bytes
/
Dockerfile.base
File metadata and controls
32 lines (25 loc) · 766 Bytes
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
### Created by Dr. Benjamin Richards (b.richards@qmul.ac.uk)
### Download base image from cern repo on docker hub
FROM cern/cc7-base:latest
### Run the following commands as super user (root):
USER root
#######################
### GCC ENVIRONMENT ###
#######################
RUN yum install -y \
git \
zlib-devel \
wget \
tar \
gcc-c++ \
make \
file \
bzip2-devel \
which \
&& yum clean all \
&& rm -rf /var/cache/yum
Run git clone https://github.com/ToolDAQ/ToolDAQApplication.git ; cd ToolDAQApplication ; ./GetToolDAQ.sh --ToolDAQ_ZMQ;
Run cd ToolDAQApplication ; ./GetToolDAQ.sh --Boost;
Run cd ToolDAQApplication ; ./GetToolDAQ.sh --Final;
### Open terminal
CMD ["/bin/bash"]