All checks were successful
continuous-integration/drone/push Build is passing
Bump [application dependencies][app-diffs]: * [`credo` from 1.7.5 to 1.7.6][credo-diffs] * [`phoenix_ecto` from 4.5.1. to 4.6.0][phoenix_ecto-diffs] Bump [`erlang`][erlang-release] from [26.2.3 to 26.2.5][erlang-diffs]. [app-diffs]: https://diff.hex.pm/diffs?diffs[]=credo:1.7.5:1.7.6&diffs[]=phoenix_ecto:4.5.1:4.6.0 [credo-diffs]: https://diff.hex.pm/diff/credo/1.7.5..1.7.6 [phoenix_ecto-diffs]: https://diff.hex.pm/diff/phoenix_ecto/4.5.1..4.6.0 [erlang-release]: https://www.erlang.org/patches/otp-26.2.5 [erlang-diffs]: https://github.com/erlang/otp/compare/OTP-26.2.3...OTP-26.2.5 Reviewed-on: #73 Co-authored-by: Joao P Dubas <joao.dubas+gitea@gmail.com> Co-committed-by: Joao P Dubas <joao.dubas+gitea@gmail.com>
11 lines
273 B
Docker
11 lines
273 B
Docker
FROM hexpm/elixir:1.16.2-erlang-26.2.5-debian-bookworm-20240513-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
|