-
-
Save ardeshir/1201b4f8e6cf6d65fe1022f67385864e to your computer and use it in GitHub Desktop.
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 julia:0.6 | |
RUN apt-get update \ | |
&& apt-get install -y \ | |
build-essential \ | |
vim \ | |
tmux \ | |
unzip \ | |
cmake \ | |
&& apt-get clean | |
ADD deps.jl deps.jl | |
RUN julia deps.jl | |
COPY app /app | |
WORKDIR /app | |
CMD ["bin/server"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment