├── .github └── workflows │ └── ci.yml ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── VERSION └── patches └── .gitkeep /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitwalker/alpine-erlang/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitwalker/alpine-erlang/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitwalker/alpine-erlang/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitwalker/alpine-erlang/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitwalker/alpine-erlang/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | erlang 27.3.3 2 | alpine 3.21.3 3 | -------------------------------------------------------------------------------- /patches/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------