如何确定此Elixir图像使用的Alpine版本



我第一次使用Docker浏览酒厂指南。上面写着:

# This should match the version of Alpine that the `elixir:1.7.2-alpine` image uses
ARG ALPINE_VERSION=3.8
FROM elixir:1.7.2-alpine AS builder

如何确定Alpine长生不老药1.7.2-使用哪种版本?我该如何在这一页上辨别?(你能吗?(如果我得到一个版本不匹配,它会抛出这个错误:

Unusable Erlang runtime system! This is likely due to being compiled for another system than the host is running

顺便说一句,Elixir 1.13.4正在尝试这个。

我建议您使用hexm图像,这与"官方的";images在标签名称中列出了所使用的精确OS、Erlang和Elixir版本,并且不会追溯更新OS/Erlang版本下的相同标签。

有一个公开的PR将此建议添加到官方docker图像的自述中。

点击TAGS,你可以找到不同的版本,这是你在寻找

最新更新