From 613c028a6726dd3846cf53b16ee3561d4d91a1a3 Mon Sep 17 00:00:00 2001 From: Joao P Dubas Date: Wed, 23 Apr 2025 13:48:55 +0000 Subject: [PATCH] chore(docker): upgrade erlang to 27.3.3 (#140) Upgrade docker image for [`elixir:1.18.3-erlang-27.3.3-debian-bookworm-20250407-slim`][0]. Reviewed-on: https://gitea.dubas.dev/joao.dubas/ex_trainer/pulls/140 [0]: https://hub.docker.com/layers/hexpm/elixir/1.18.3-erlang-27.3.3-debian-bookworm-20250407-slim/images/sha256-88627ea2786f2e9ad7520d0f12bc7a9266ea0d6e7f89f2e0e278404263d470a4 Co-authored-by: Joao P Dubas Co-committed-by: Joao P Dubas --- .drone.yml | 2 +- Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.drone.yml b/.drone.yml index 444dabf..09bcc7c 100644 --- a/.drone.yml +++ b/.drone.yml @@ -44,7 +44,7 @@ steps: path: /drone/src/deps - name: dependencies and compile - image: &elixir 'hexpm/elixir:1.18.3-erlang-27.3.2-debian-bookworm-20250407-slim' + image: &elixir 'hexpm/elixir:1.18.3-erlang-27.3.3-debian-bookworm-20250407-slim' commands: - apt-get update - apt-get install -y git make diff --git a/Dockerfile b/Dockerfile index 1a35c5e..c21635a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ ARG ELIXIR_VERSION=1.18.3 -ARG OTP_VERSION=27.3.2 +ARG OTP_VERSION=27.3.3 ARG DEBIAN_VERSION=bookworm-20250407-slim ARG BUILDER_IMAGE="hexpm/elixir:${ELIXIR_VERSION}-erlang-${OTP_VERSION}-debian-${DEBIAN_VERSION}" ARG RUNNER_IMAGE="debian:${DEBIAN_VERSION}"