forked from potsda.mn/mobilizon
f8ed5cd779
* Also add special deps for argon2 support inside the Alpine image * Make sure yarn install is triggered Signed-off-by: Thomas Citharel <tcit@tcit.fr>
11 lines
218 B
Docker
11 lines
218 B
Docker
FROM bitwalker/alpine-elixir:latest
|
|
|
|
RUN apk add inotify-tools postgresql-client yarn
|
|
RUN apk add --no-cache make gcc libc-dev
|
|
|
|
RUN mix local.hex --force && mix local.rebar --force
|
|
|
|
WORKDIR /app
|
|
|
|
EXPOSE 4000 4001 4002
|