I have upgraded elixir version from 1.10.0 to 1.13.4. I tried to update docker file manually “FROM elixir:1.10.0-slim” to FROM elixir:1.13.4-slim, but I am getting below error.
Current docker file is using
FROM elixir:1.10.0-slim
Error
** (Mix) You’re trying to run :test_app on Elixir v1.10.0 but it has declared in its mix.exs file it supports only Elixir ~> 1.13.4
Please help to upgrade the docker file and fix this issue.
Look at your mix.exs file, there is a function project, that returns a keyword list, where one of the keywords is elixir, specifying the expected elixir version for the project, you need to update this.