forked from UCATLAS/xAODAnaHelpers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
63 lines (56 loc) · 2.07 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
58
59
60
61
62
63
# provide xAH on top of the AnalysisBase/AnalysisTop image
ARG DOCKER_BASE_REPO
ARG DOCKER_IMG
ARG DOCKER_TAG
ARG GIT_SHA
FROM $DOCKER_BASE_REPO/$DOCKER_IMG:$DOCKER_TAG
# change TMPDIR because analysisbase image problems writing to /tmp
ARG DOCKER_IMG
ARG GIT_SHA
ENV TMPDIR=/workarea/tmp/
ENV DOCKER_IMG=${DOCKER_IMG:-analysisbase}
ENV GIT_SHA=${GIT_SHA:-private}
WORKDIR $TMPDIR
WORKDIR /home/atlas
### COPY COMMANDS HERE ###
# Copy the project's sources into the image
COPY . /workarea/src/xAODAnaHelpers
COPY ci/top_CMakeLists.txt /workarea/src/CMakeLists.txt.tmp
# this is needed to get rpmbuild temp dir in different place
COPY ci/.rpmmacros /root/.rpmmacros
# Use our MOTD (Message-of-the-Day)
COPY ci/motd /etc/motd
# Copy the environemnt setup script for xAH
COPY ci/xAODAnaHelpers_setup.sh /xAODAnaHelpers_setup.sh
### RUN COMMANDS HERE (AS ROOT) ###
# Switch to ROOT user for now
USER root
# 1. Build the project inside a build/ directory
# 2. Create an RPM
# 3. Install the RPM
# 4. Clean up
# 5. Call the MOTD
# 6. Call the environment setup script in .bashrc
RUN export RELEASE_TYPE=$([ "$DOCKER_IMG" == "analysisbase" ] && echo "AnalysisBase" || echo "AnalysisTop") \
&& envsubst '\$RELEASE_TYPE' < /workarea/src/CMakeLists.txt.tmp > /workarea/src/CMakeLists.txt \
&& source /release_setup.sh \
&& mkdir -p /workarea/build \
&& cd /workarea/build \
#-DATLAS_USE_CUSTOM_CPACK_INSTALL_SCRIPT=TRUE is needed for some AB releases.
&& time cmake ../src -DATLAS_USE_CUSTOM_CPACK_INSTALL_SCRIPT=TRUE \
&& time make -j2 \
&& cpack \
&& rpm -i /workarea/build/*_*.rpm \
&& rm -rf /workarea \
&& echo '[ ! -z "$TERM" -a -r /etc/motd ] && cat /etc/motd' >> /home/atlas/.bashrc \
&& echo 'source /xAODAnaHelpers_setup.sh' >> /home/atlas/.bashrc
# set TMPDIR back
ENV TMPDIR=/tmp
# Switch back to the ATLAS account
USER atlas
# Start the image with BASH by default
CMD /bin/bash
### TO DO ENTRYPOINT
#RUN echo -e '#!/bin/bash\nsource ~/.bashrc\nxAH_run.py "$@"' > $HOME/entrypoint.sh
#RUN chmod +x $HOME/entrypoint.sh
#ENTRYPOINT ["/home/atlas/entrypoint.sh"]