Skip to content

Commit

Permalink
Added missing deps to dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
JKRT committed Feb 4, 2020
1 parent b5c6f47 commit 1ddca75
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .CI/docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,13 @@ RUN apt-get update && \
&& \

RUN export HOME=/home/julia && \
julia -O3 -e 'using Pkg;Pkg.REPLMode.pkgstr("add ZMQ ;precompile");using ZMQ' && \
julia -O3 -e 'using Pkg;Pkg.REPLMode.pkgstr("add Compat ;precompile");using Compat' && \
julia -O3 -e 'using Pkg;Pkg.REPLMode.pkgstr("add DataFrames;precompile");using DataFrames' && \
julia -O3 -e 'using Pkg;Pkg.REPLMode.pkgstr("add DataStructures ;precompile");using DataStructures' && \
julia -O3 -e 'using Pkg;Pkg.REPLMode.pkgstr("add LightXML ;precompile");using LightXML' && \
julia -O3 -e 'using Pkg;Pkg.REPLMode.pkgstr("add Random ;precompile");using Random' && \
julia -O3 -e 'using Pkg;Pkg.REPLMode.pkgstr("add Test ;precompile");using Test' && \
julia -O3 -e 'using Pkg;Pkg.REPLMode.pkgstr("add https://github.com/OpenModelica/ImmutableList.jl ;precompile"); using ImmutableList' && \
julia -O3 -e 'using Pkg;Pkg.REPLMode.pkgstr("add ExportAll ;precompile");using ExportAll' && \
julia -O3 -e 'using Pkg;Pkg.REPLMode.pkgstr("add MacroTools ;precompile");using MacroTools' && \
(cd /home/julia && tar cf /home/julia.tar .julia) && rm -rf /home/julia/.julia && chmod ugo+rwx /home/julia

0 comments on commit 1ddca75

Please sign in to comment.