Any ideas what the root cause is? Here is my script to replicate:
#!/bin/sh
set -e
set -x
# display architecture
uname -a
# install java
apk add openjdk8
# Get PlantUML
wget https://github.com/plantuml/plantuml/releases/download/v1.2022.4/plantuml-1.2022.4.jar
# Write code
echo -e "@startuml \n database Database {\n}\n@enduml" > example.puml
# Run plantuml
java -jar plantuml-1.2022.4.jar example.puml
Output attached.
output.log.txt
