Some checks failed
continuous-integration/drone/pr Build is failing
With this update the system can install dependencies from git.
11 lines
275 B
Docker
11 lines
275 B
Docker
FROM hexpm/elixir:1.17.2-erlang-27.0-debian-bookworm-20240701-slim AS builder
|
|
|
|
RUN apt-get update \
|
|
&& apt-get -y install git make
|
|
|
|
WORKDIR /opt/app
|
|
COPY ./mix.exs ./
|
|
COPY ./mix.lock ./
|
|
RUN mix do local.hex --force, local.rebar --force \
|
|
&& mix do deps.get, deps.compile
|