This commit is contained in:
Mayel de Borniol 2023-07-01 09:06:10 +01:00
parent b873172d10
commit b0fde782f8
2 changed files with 4 additions and 4 deletions

View file

@ -1,5 +1,5 @@
erlang 26.0.1
elixir 1.15.0-otp-26
erlang 26.0.2
elixir 1.15.1-otp-26
just 1.14.0
yarn 1.22.19
nodejs 20.2.0

View file

@ -23,9 +23,9 @@ MIX_ENV := env_var_or_default('MIX_ENV', "dev")
APP_NAME := "bonfire"
# The version of Alpine to use for the final image - should match the version of Alpine used in the ELIXIR_VERSION below:
# The version of Alpine to use for the final image - should match the version used in the Elixir docker image, which can be checked on Docker Hub: https://hub.docker.com/r/hexpm/elixir/tags?name=1.15.1-erlang-26.0.2-alpine
ALPINE_VERSION := env_var_or_default('ALPINE_VERSION', "3.18.2")
ELIXIR_VERSION := env_var_or_default('ELIXIR_VERSION', "1.15.0-erlang-26.0.1-alpine-"+ALPINE_VERSION)
ELIXIR_VERSION := env_var_or_default('ELIXIR_VERSION', "1.15.1-erlang-26.0.2-alpine-"+ALPINE_VERSION)
# ^ Defines what version of Elixir to use - ATTENTION: when changing Elixir version make sure to update the `ALPINE_VERSION` arg to match, as well as the Elixir version in:
# - .tool-versions
# - Dockerfile.dev