2019-01-03 10:33:52 +00:00
|
|
|
FROM elixir:1.7
|
2018-07-25 14:42:04 +00:00
|
|
|
|
|
|
|
RUN apt-get update && apt-get install -y build-essential inotify-tools postgresql-client
|
|
|
|
|
|
|
|
RUN mix local.hex --force && mix local.rebar --force
|
|
|
|
|
|
|
|
COPY docker/entrypoint.sh /bin/entrypoint
|
|
|
|
|
|
|
|
WORKDIR /app
|
|
|
|
|
2019-01-03 10:33:52 +00:00
|
|
|
EXPOSE 4000 4001 4002
|