From 08e2dfa32585d0949053f1f442807cf4925f1448 Mon Sep 17 00:00:00 2001 From: Kevin Sivic Date: Mon, 1 Dec 2025 09:39:07 -0500 Subject: [PATCH] Fix Docker image tag for hexpm/elixir MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Use correct tag: 1.17.3-erlang-27.1.3-debian-bookworm-20250610-slim 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- .forgejo/workflows/ci.yml | 2 +- Dockerfile | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.forgejo/workflows/ci.yml b/.forgejo/workflows/ci.yml index 0eb489b..163b7db 100644 --- a/.forgejo/workflows/ci.yml +++ b/.forgejo/workflows/ci.yml @@ -11,7 +11,7 @@ on: jobs: test: runs-on: ubuntu-latest - container: hexpm/elixir:1.17.3-erlang-27.1.2-debian-bookworm-20240904-slim + container: hexpm/elixir:1.17.3-erlang-27.1.3-debian-bookworm-20250610-slim services: postgres: diff --git a/Dockerfile b/Dockerfile index bd7d9a1..98c0f5c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,8 +14,8 @@ # docker run -p 4000:4000 localspot ARG ELIXIR_VERSION=1.17.3 -ARG OTP_VERSION=27.1.2 -ARG DEBIAN_VERSION=bookworm-20240904-slim +ARG OTP_VERSION=27.1.3 +ARG DEBIAN_VERSION=bookworm-20250610-slim ARG BUILDER_IMAGE="hexpm/elixir:${ELIXIR_VERSION}-erlang-${OTP_VERSION}-debian-${DEBIAN_VERSION}" ARG RUNNER_IMAGE="debian:${DEBIAN_VERSION}"