This repository has been archived on 2025-09-26. You can view files and clone it, but you cannot make any changes to its state, such as pushing and creating new issues, pull requests or comments.
gest/Dockerfile
2022-11-23 20:02:12 +01:00

12 lines
No EOL
174 B
Docker

FROM elixir:1.14
RUN mix local.hex --force && \
mix local.rebar --force
WORKDIR /app
COPY . /app
RUN mix deps.get
RUN mix deps.compile
CMD ["mix", "run", "--no-halt"]