summaryrefslogtreecommitdiff
path: root/share/spack/templates/container/alpine_3.dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'share/spack/templates/container/alpine_3.dockerfile')
-rw-r--r--share/spack/templates/container/alpine_3.dockerfile7
1 files changed, 7 insertions, 0 deletions
diff --git a/share/spack/templates/container/alpine_3.dockerfile b/share/spack/templates/container/alpine_3.dockerfile
new file mode 100644
index 0000000000..583288b7cb
--- /dev/null
+++ b/share/spack/templates/container/alpine_3.dockerfile
@@ -0,0 +1,7 @@
+{% extends "container/bootstrap-base.dockerfile" %}
+{% block install_os_packages %}
+RUN apk update \
+ && apk add --no-cache curl findutils gcc g++ gfortran git gnupg \
+ make patch python3 py3-pip tcl unzip bash \
+ && pip3 install boto3
+{% endblock %}