Skip to content

Instantly share code, notes, and snippets.

@srenatus
Created June 22, 2015 08:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save srenatus/690b0e8d89271bae21dd to your computer and use it in GitHub Desktop.
Save srenatus/690b0e8d89271bae21dd to your computer and use it in GitHub Desktop.
spack/llvm problem
FROM debian:jessie
ENV DEBIAN_FRONTEND noninteractive
RUN apt-get update && \
apt-get upgrade -y && \
apt-get install -y --no-install-recommends curl ca-certificates \
python git build-essential && \
apt-get clean
RUN useradd -d /home/jovyan -m -s /bin/bash jovyan
USER jovyan
WORKDIR /home/jovyan
ENV SPACK_ROOT=/home/jovyan/spack
RUN git clone https://github.com/scalability-llnl/spack.git
ENV PATH $SPACK_ROOT/bin:$PATH
RUN spack install llvm
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment