Skip to content

Instantly share code, notes, and snippets.

@anirudhmurali
Created February 13, 2018 12:59
Show Gist options
  • Save anirudhmurali/7c0b455aa3bbed1ea5ec47aa1da65df5 to your computer and use it in GitHub Desktop.
Save anirudhmurali/7c0b455aa3bbed1ea5ec47aa1da65df5 to your computer and use it in GitHub Desktop.
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