Created
October 28, 2014 11:02
-
-
Save stucchio/723108d4647fc83b151e to your computer and use it in GitHub Desktop.
Dockerfile for Julia
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM ubuntu:14.04 | |
MAINTAINER Chris Stucchio <stucchio@gmail.com> | |
# Necessary to add a ppa | |
RUN apt-get update && apt-get install -y python-software-properties software-properties-common | |
# Julia repository | |
RUN add-apt-repository ppa:staticfloat/juliareleases && apt-get update | |
# Yay julia | |
RUN apt-get install -y julia | |
# Ensure existence of base julia package folder | |
RUN julia -e "Pkg.resolve()" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment