From 3534cc675344c61eabd32f2e3b93cdbd4ca5849e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 26 May 2025 16:12:58 +0000 Subject: [PATCH] Bump elixir from 1.18.0-otp-27-alpine to 1.18.3-otp-27-alpine Bumps elixir from 1.18.0-otp-27-alpine to 1.18.3-otp-27-alpine. --- updated-dependencies: - dependency-name: elixir dependency-version: 1.18.3-otp-27-alpine dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 3770e758..0ca78e77 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.18.3-otp-27-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.18.3-otp-27-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/*