Skip to content

Instantly share code, notes, and snippets.

@thejohnnybot
Created January 7, 2016 18:01
Show Gist options
  • Select an option

  • Save thejohnnybot/fdd5fb7fe7331c629962 to your computer and use it in GitHub Desktop.

Select an option

Save thejohnnybot/fdd5fb7fe7331c629962 to your computer and use it in GitHub Desktop.
Dockerfile
FROM msaraiva/elixir-dev
RUN apk --update add make gcc bash vim git-bash-completion && \
rm -rf /var/cache/apk/*
COPY . /usr/src/app
WORKDIR /usr/src/app
RUN mix do deps.get, compile
EXPOSE 4000
CMD ["mix", "phoenix.server"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment