use elixir-alpine base image

Signed-off-by: Ruidy <rnemausat@newstore.com>
This commit is contained in:
Ruidy 2022-09-06 18:20:40 +02:00
parent 996f60287b
commit 30bab55d9c

View file

@ -1,7 +1,7 @@
FROM elixir:latest
FROM elixir:1.14-alpine
WORKDIR /app
COPY . .
RUN iex -s mix
CMD ["iex", "-S", "mix"]