From 50e79cbb1808559e902311647642edb32254f348 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 19 Jan 2026 17:59:32 +0000 Subject: [PATCH] Bump elixir from 1.18.0-otp-27-alpine to 1.19.4-otp-28-alpine Bumps elixir from 1.18.0-otp-27-alpine to 1.19.4-otp-28-alpine. --- updated-dependencies: - dependency-name: elixir dependency-version: 1.19.4-otp-28-alpine dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 98578b58..a891d8de 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ #=========== #(Elixir) Build Stage #=========== -FROM elixir:1.18.0-otp-27-alpine as builder-elixir +FROM elixir:1.19.4-otp-28-alpine as builder-elixir # Install git and build essentials RUN apk add --no-cache git build-base @@ -28,7 +28,7 @@ RUN mix local.hex --force && \ #================ #Deployment Stage #================ -FROM elixir:1.18.0-otp-27-alpine as deployer +FROM elixir:1.19.4-otp-28-alpine as deployer # RUN mkdir -p /app/test /app/prod RUN apk add --no-cache git bash curl netcat-openbsd build-base && rm -rf /var/cache/apk/*