diff options
author | Haelwenn (lanodan) Monnier <contact@hacktivis.me> | 2022-09-02 22:35:08 +0200 |
---|---|---|
committer | Haelwenn (lanodan) Monnier <contact@hacktivis.me> | 2022-09-02 22:53:54 +0200 |
commit | 21ab7369cad6504be2f815aec888b38023d7a17a (patch) | |
tree | 009efe3c71937b9b18b5fe528667b59a27aacd07 /Dockerfile | |
parent | 01239456a1d5a9a6ec5a5c94b4c48c07af92471c (diff) | |
download | pleroma-21ab7369cad6504be2f815aec888b38023d7a17a.tar.gz pleroma-21ab7369cad6504be2f815aec888b38023d7a17a.zip |
Bump minimum Elixir version to 1.10
With the release of Elixir 1.14, Elixir 1.9 is now end-of-life.
Elixir 1.10 Release Notes:
https://github.com/elixir-lang/elixir/releases/tag/v1.10.0
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Dockerfile b/Dockerfile index e68b7ea7c..334d954f7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,11 +1,11 @@ -FROM elixir:1.9-alpine as build +FROM elixir:1.10-alpine as build COPY . . ENV MIX_ENV=prod RUN apk add git gcc g++ musl-dev make cmake file-dev &&\ - echo "import Mix.Config" > config/prod.secret.exs &&\ + echo "import Config" > config/prod.secret.exs &&\ mix local.hex --force &&\ mix local.rebar --force &&\ mix deps.get --only prod &&\ |