Skip to content

Instantly share code, notes, and snippets.

@stucchio
Created October 28, 2014 11:02
Show Gist options
  • Save stucchio/723108d4647fc83b151e to your computer and use it in GitHub Desktop.
Save stucchio/723108d4647fc83b151e to your computer and use it in GitHub Desktop.
Dockerfile for Julia
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