From bd6f8206a7bc9dc33dbcc2e2f36fb000f05a8447 Mon Sep 17 00:00:00 2001 From: Thomas Citharel Date: Wed, 15 Dec 2021 14:55:47 +0100 Subject: [PATCH] Use Elixir 1.13 in Docker builds Signed-off-by: Thomas Citharel --- docker/production/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/production/Dockerfile b/docker/production/Dockerfile index 8c006ba5e..4909b7e7b 100644 --- a/docker/production/Dockerfile +++ b/docker/production/Dockerfile @@ -12,7 +12,7 @@ RUN yarn install --network-timeout 100000 \ && yarn run build # Then, build the application binary -FROM elixir:1.12-alpine AS builder +FROM elixir:1.13-alpine AS builder RUN apk add --no-cache build-base git cmake