summaryrefslogtreecommitdiff
path: root/share/spack/templates/container/Dockerfile
blob: 2f1370fdb380dad982ff4f91fcb58b9186b56055 (plain) (blame)
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
# Build stage with Spack pre-installed and ready to be used
FROM {{ build.image }}:{{ build.tag }} as builder

# What we want to install and how we want to install it
# is specified in a manifest file (spack.yaml)
RUN mkdir {{ paths.environment }} \
{{ manifest }} > {{ paths.environment }}/spack.yaml

# Install the software, remove unecessary deps
RUN cd {{ paths.environment }} && spack env activate . && spack install && spack gc -y
{% if strip %}

# Strip all the binaries
RUN find -L {{ paths.view }}/* -type f -exec readlink -f '{}' \; | \
    xargs file -i | \
    grep 'charset=binary' | \
    grep 'x-executable\|x-archive\|x-sharedlib' | \
    awk -F: '{print $1}' | xargs strip -s
{% endif %}

# Modifications to the environment that are necessary to run
RUN cd {{ paths.environment }} && \
    spack env activate --sh -d . >> /etc/profile.d/z10_spack_environment.sh

{% if extra_instructions.build %}
{{ extra_instructions.build }}
{% endif %}

# Bare OS image to run the installed executables
FROM {{ run.image }}

COPY --from=builder {{ paths.environment }} {{ paths.environment }}
COPY --from=builder {{ paths.store }} {{ paths.store }}
COPY --from=builder {{ paths.view }} {{ paths.view }}
COPY --from=builder /etc/profile.d/z10_spack_environment.sh /etc/profile.d/z10_spack_environment.sh

{% if os_packages %}
RUN {{ os_packages.update }}                                   \
 && {{ os_packages.install }}{% for pkg in os_packages.list %} {{ pkg }}{% endfor %} \
 && {{ os_packages.clean }}
{% endif %}

{% if extra_instructions.final %}
{{ extra_instructions.final }}
{% endif %}

{% for label, value in labels.items() %}
LABEL "{{ label }}"="{{ value }}"
{% endfor %}

ENTRYPOINT ["/bin/bash", "--rcfile", "/etc/profile", "-l"]