feat: upgrade runtime in docker and ci

Match erlang, elixir, and postgres versions for `docker` and `ci`
environments.
This commit is contained in:
João Paulo Dubas 2025-03-09 19:02:26 +00:00
parent 50e51715dc
commit 15967d7453
Signed by: joao.dubas
SSH Key Fingerprint: SHA256:V1mixgOGRc/YMhGx/DNkOSmJxgA2vHNrDZEk3wt/kOA
2 changed files with 5 additions and 5 deletions

View File

@ -9,7 +9,7 @@ trigger:
steps:
- name: database healthcheck
image: &postgres 'postgres:17.3-alpine'
image: &postgres 'postgres:17.4-alpine'
environment:
PGUSER: &db_user postgres
PGPASSWORD: &db_pass postgres
@ -44,7 +44,7 @@ steps:
path: /drone/src/deps
- name: dependencies and compile
image: &elixir 'hexpm/elixir:1.18.2-erlang-27.2.2-debian-bookworm-20250203-slim'
image: &elixir 'hexpm/elixir:1.18.3-erlang-27.3-debian-bookworm-20250224-slim'
commands:
- apt-get update
- apt-get install -y git make

View File

@ -1,6 +1,6 @@
ARG ELIXIR_VERSION=1.18.2
ARG OTP_VERSION=27.2.2
ARG DEBIAN_VERSION=bookworm-20250203-slim
ARG ELIXIR_VERSION=1.18.3
ARG OTP_VERSION=27.3
ARG DEBIAN_VERSION=bookworm-20250224-slim
ARG BUILDER_IMAGE="hexpm/elixir:${ELIXIR_VERSION}-erlang-${OTP_VERSION}-debian-${DEBIAN_VERSION}"
ARG RUNNER_IMAGE="debian:${DEBIAN_VERSION}"