We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e8c000b commit 91c55aeCopy full SHA for 91c55ae
OpenJDK/24/Dockerfile
@@ -36,6 +36,10 @@ RUN apk add --no-cache \
36
update-ms-fonts && \
37
fc-cache -f
38
39
+# Fix JAVA: java.lang.RuntimeException: java.awt.FontFormatException: bad pfa font
40
+RUN find /usr/share/fonts -type f \
41
+ \( -iname "*.pfa" -o -iname "*.pfb" -o -iname "*.pcf" -o -iname "*.otb" \) -delete && \
42
+ fc-cache -f
43
44
RUN useradd -m -d /home/container container
45
0 commit comments