From 8c8daae006335f0aec6e7807b38af700c74f8043 Mon Sep 17 00:00:00 2001
From: Thomas Citharel <tcit@tcit.fr>
Date: Tue, 5 Sep 2023 19:44:26 +0200
Subject: [PATCH] chore(docker): bump Elixir version for Docker images

Signed-off-by: Thomas Citharel <tcit@tcit.fr>
---
 docker/multiarch/Dockerfile  | 4 ++--
 docker/production/Dockerfile | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/docker/multiarch/Dockerfile b/docker/multiarch/Dockerfile
index 80d6ae1e8..5c71643b2 100644
--- a/docker/multiarch/Dockerfile
+++ b/docker/multiarch/Dockerfile
@@ -1,4 +1,4 @@
-FROM elixir as build
+FROM elixir:1.15 as build
 SHELL ["/bin/bash", "-c"]
 ENV MIX_ENV prod
 # ENV LANG en_US.UTF-8
@@ -12,7 +12,7 @@ ENV ERL_FLAGS=$ERL_FLAGS
 # Set the right versions
 ENV ELIXIR_VERSION latest
 ENV ERLANG_VERSION latest
-ENV NODE_VERSION 16
+ENV NODE_VERSION 18
 
 # Install system dependencies
 RUN apt-get update -yq && apt-get install -yq build-essential cmake postgresql-client git curl gnupg unzip exiftool webp imagemagick gifsicle
diff --git a/docker/production/Dockerfile b/docker/production/Dockerfile
index a77e01c88..7621bcdf1 100644
--- a/docker/production/Dockerfile
+++ b/docker/production/Dockerfile
@@ -10,7 +10,7 @@ RUN yarn install --network-timeout 100000 \
     && yarn run build
 
 # Then, build the application binary
-FROM elixir:1.14-alpine AS builder
+FROM elixir:1.15-alpine AS builder
 
 # Fix qemu segfault on arm64
 # See https://github.com/plausible/analytics/pull/2879 and https://github.com/erlang/otp/pull/6340