Compare commits
2 commits
51bb51e093
...
547fabad6d
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
547fabad6d | ||
| 9e7d8b2277 |
3 changed files with 9 additions and 13 deletions
|
|
@ -11,12 +11,8 @@
|
||||||
# - https://pkgs.org/ - resource for finding needed packages
|
# - https://pkgs.org/ - resource for finding needed packages
|
||||||
# - Ex: hexpm/elixir:1.18.3-erlang-27.3-debian-bullseye-20250317-slim
|
# - Ex: hexpm/elixir:1.18.3-erlang-27.3-debian-bullseye-20250317-slim
|
||||||
#
|
#
|
||||||
ARG ELIXIR_VERSION=1.18.3
|
ARG BUILDER_IMAGE="hexpm/elixir:1.18.3-erlang-27.3-debian-bullseye-20250317-slim"
|
||||||
ARG OTP_VERSION=27.3
|
ARG RUNNER_IMAGE="debian:bullseye-20250317-slim"
|
||||||
ARG DEBIAN_VERSION=bullseye-20250317-slim
|
|
||||||
|
|
||||||
ARG BUILDER_IMAGE="hexpm/elixir:${ELIXIR_VERSION}-erlang-${OTP_VERSION}-debian-${DEBIAN_VERSION}"
|
|
||||||
ARG RUNNER_IMAGE="debian:${DEBIAN_VERSION}"
|
|
||||||
|
|
||||||
FROM ${BUILDER_IMAGE} as builder
|
FROM ${BUILDER_IMAGE} as builder
|
||||||
|
|
||||||
|
|
|
||||||
8
mix.exs
8
mix.exs
|
|
@ -34,12 +34,12 @@ defmodule Mv.MixProject do
|
||||||
defp deps do
|
defp deps do
|
||||||
[
|
[
|
||||||
{:sourceror, "~> 1.8", only: [:dev, :test]},
|
{:sourceror, "~> 1.8", only: [:dev, :test]},
|
||||||
{:live_debugger, "~> 0.1", only: [:dev]},
|
{:live_debugger, "~> 0.2", only: [:dev]},
|
||||||
{:ash_admin, "~> 0.13"},
|
{:ash_admin, "~> 0.13"},
|
||||||
{:ash_postgres, "~> 2.0"},
|
{:ash_postgres, "~> 2.0"},
|
||||||
{:ash_phoenix, "~> 2.0"},
|
{:ash_phoenix, "~> 2.0"},
|
||||||
{:ash, "~> 3.0"},
|
{:ash, "~> 3.0"},
|
||||||
{:igniter, "~> 0.5", only: [:dev, :test]},
|
{:igniter, "~> 0.6", only: [:dev, :test]},
|
||||||
{:phoenix, "~> 1.7.20"},
|
{:phoenix, "~> 1.7.20"},
|
||||||
{:phoenix_ecto, "~> 4.5"},
|
{:phoenix_ecto, "~> 4.5"},
|
||||||
{:ecto_sql, "~> 3.10"},
|
{:ecto_sql, "~> 3.10"},
|
||||||
|
|
@ -64,10 +64,10 @@ defmodule Mv.MixProject do
|
||||||
{:telemetry_poller, "~> 1.0"},
|
{:telemetry_poller, "~> 1.0"},
|
||||||
{:gettext, "~> 0.26"},
|
{:gettext, "~> 0.26"},
|
||||||
{:jason, "~> 1.2"},
|
{:jason, "~> 1.2"},
|
||||||
{:dns_cluster, "~> 0.1.1"},
|
{:dns_cluster, "~> 0.2.0"},
|
||||||
{:bandit, "~> 1.5"},
|
{:bandit, "~> 1.5"},
|
||||||
{:mix_audit, "~> 2.1", only: [:dev, :test], runtime: false},
|
{:mix_audit, "~> 2.1", only: [:dev, :test], runtime: false},
|
||||||
{:sobelow, "~> 0.13", only: [:dev, :test], runtime: false},
|
{:sobelow, "~> 0.14", only: [:dev, :test], runtime: false},
|
||||||
{:credo, "~> 1.7", only: [:dev, :test], runtime: false}
|
{:credo, "~> 1.7", only: [:dev, :test], runtime: false}
|
||||||
]
|
]
|
||||||
end
|
end
|
||||||
|
|
|
||||||
|
|
@ -13,11 +13,11 @@
|
||||||
{
|
{
|
||||||
"groupName": "postgres",
|
"groupName": "postgres",
|
||||||
"description": "Group updates to postgres across drone ci, docker-compose.yml and other files",
|
"description": "Group updates to postgres across drone ci, docker-compose.yml and other files",
|
||||||
"matchDepNames": ["**postgres**"]
|
"matchPackageNames": ["**postgres**"]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"matchFileNames": [".tool-versions"],
|
"matchFileNames": [".tool-versions", "Dockerfile"],
|
||||||
"matchPackageNames": ["elixir"],
|
"matchCurrentValue": "**elixir-otp-**",
|
||||||
"enabled": false
|
"enabled": false
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue