Created
August 24, 2018 14:53
-
-
Save NaelsonDouglas/d171097c35b730ad404faefe069ba136 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 julialang/julia:v0.4.7 | |
MAINTAINER Naelson Douglas | |
RUN wget https://julialang-s3.julialang.org/bin/linux/x64/0.6/julia-0.6.4-linux-x86_64.tar.gz | |
RUN tar -xvf julia.tar | |
RUN rm julia.tar | |
RUN mv julia* julia | |
RUN mv julia ~/julia | |
RUN export PATH=$PATH:~/julia/bin | |
RUN apt-get install -y cmake | |
RUN apt-get install -y hdf5-tools | |
RUN git clone https://github.com/NaelsonDouglas/DistributedMachineLearningThesis.git | |
RUN ~/julia/bin/julia -e 'Pkg.add("Clustering")' | |
RUN ~/julia/bin/julia -e 'Pkg.add("Distributions")' | |
RUN ~/julia/bin/julia -e 'Pkg.add("MultivariateStats")' | |
RUN ~/julia/bin/julia -e 'Pkg.add("Debug")' | |
RUN ~/julia/bin/julia -e 'Pkg.add("HDF5")' | |
RUN ~/julia/bin/julia -e 'Pkg.add("Mocha")' | |
RUN ~/julia/bin/julia -e 'Pkg.add("DataFrames")' | |
RUN ~/julia/bin/julia -e 'Pkg.add("Distances")' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment