erlang
Erlang is a programming language used to build massively scalable soft real-time systems with requirements on high availability. Some of its uses are in telecoms, banking, e-commerce, computer telephony and instant messaging. Erlang's runtime system has built-in support for concurrency, distribution and fault tolerance.
See the official website for more information
This image is built by IBM to run on the IBM Z architecture and is not affiliated with any other community that provides a version of this image.
License
View license information
here
As with all Docker images, these likely also contain other software which may be under other licenses (such as Bash, etc from the base distribution, along with any direct or indirect dependencies of the primary software being contained).
As for any pre-built image usage, it is the image user's responsibility to ensure that any use of this image complies with any relevant licenses for all software contained within.
Versions
Use the pull string below for the version of this image you require.
25.3.0 |
docker pull icr.io/ibmz/erlang@sha256:1cb6b1af767eee97bb0084f585520a56f549b7374b28ab91f629b032aa062a0e |
Vulnerability Report | 10-29-2024 | 25.0.4 |
docker pull icr.io/ibmz/erlang@sha256:eae97971d2ae1761b84fa33da74da8630fa878c027c726060601547bd5cd123f |
Vulnerability Report | 10-29-2024 | 24.3.4 |
docker pull icr.io/ibmz/erlang@sha256:19f6e7caa295b22b7eb1c30f4f96131c29c19bef11b87d110a2f66e3f22d1e18 |
Vulnerability Report | 10-29-2024 |
Version |
Pull String |
Security (IBM Cloud) |
Created |
Usage Notes
Run it as the REPL:
docker run -it --rm icr.io/ibmz/erlang:[version]
Run an Erlang escript:
Create a Dockerfile that includes the Erlang escript that you want to run.
FROM icr.io/ibmz/erlang:[version]
WORKDIR /home
COPY script.erl .
CMD [ "escript", "script.erl" ]
Build the image:
docker build -t script-image .
Run a container using the image that you just built:
docker run --name script-container script-image