Created
October 28, 2014 11:05
-
-
Save stucchio/4c5824d4716aad89c396 to your computer and use it in GitHub Desktop.
Dockerfile for julia web stack
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 stucchio/juliabase:0.3.2 | |
MAINTAINER Chris Stucchio <[email protected]> | |
# Julia libs we want | |
ADD REQUIRE /.julia/v0.3/REQUIRE | |
RUN julia -e "Pkg.resolve()" | |
# C Libraries we need | |
RUN apt-get install -y unixodbc unixodbc-dev libsqliteodbc odbc-postgresql libhttp-parser-dev libicu-dev # Utility libs |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment