All checks were successful
continuous-integration/drone/push Build is passing
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | hexpm/elixir | final | patch | `1.16.1-erlang-26.2.2-debian-bookworm-20240130-slim` -> `1.16.2-erlang-26.2.2-debian-bookworm-20240130-slim` | --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4xNjIuMSIsInVwZGF0ZWRJblZlciI6IjM3LjE2Mi4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9--> Reviewed-on: #65 Co-authored-by: renovate-bot <renovate-bot@dubas.dev> Co-committed-by: renovate-bot <renovate-bot@dubas.dev>
11 lines
273 B
Docker
11 lines
273 B
Docker
FROM hexpm/elixir:1.16.2-erlang-26.2.2-debian-bookworm-20240130-slim AS builder
|
|
|
|
RUN apt-get update \
|
|
&& apt-get -y install 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
|