From da6739f7ccfb6bcd7bc4f9a4de40a769f6a4400a Mon Sep 17 00:00:00 2001 From: Kevin Sivic Date: Fri, 28 Nov 2025 21:56:11 -0500 Subject: [PATCH] Fix Dockerfile: Use stable Elixir 1.17 Alpine image MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The release candidate version 1.19.0-rc.0-otp-28-alpine is not available on Docker Hub. Switched to stable elixir:1.17-alpine which is compatible with the application. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index ba47b00..1b35c55 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Build stage -FROM elixir:1.19.0-rc.0-otp-28-alpine AS build +FROM elixir:1.17-alpine AS build # Install build dependencies RUN apk add --no-cache build-base git nodejs npm