Skip to content

Instantly share code, notes, and snippets.

@jmcarbo
Created November 19, 2018 00:12
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 jmcarbo/01bd7aab918fafa69eabcce0989cabff to your computer and use it in GitHub Desktop.
Save jmcarbo/01bd7aab918fafa69eabcce0989cabff to your computer and use it in GitHub Desktop.
FROM golang:latest
RUN apt-get update && apt-get install -y \
build-essential \
libssl-dev \
uuid-dev \
libgpgme11-dev squashfs-tools wget git
RUN mkdir -p $GOPATH/src/github.com/sylabs && cd $GOPATH/src/github.com/sylabs && git clone https://github.com/sylabs/singularity.git && cd singularity && \
go get -u -v github.com/golang/dep/cmd/dep && ./mconfig && make -C builddir && make -C builddir install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment