Skip to content

Instantly share code, notes, and snippets.

@ardeshir
Forked from anirudhmurali/julia-genie.dockerfile
Created October 16, 2024 15:07
Show Gist options
  • Save ardeshir/1201b4f8e6cf6d65fe1022f67385864e to your computer and use it in GitHub Desktop.
Save ardeshir/1201b4f8e6cf6d65fe1022f67385864e 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