Add fontconfig to dockerfile dependencies

Some plugins that deal with rendering fonts might throw a nasty error since it's a headless JDK, supposedly installing this package fixes the issue.
An example of the issue can be found here: https://hastebin.com/tegasuwedo.rb
This commit is contained in:
Isaac A 2018-10-05 23:10:49 -04:00 committed by GitHub
parent ec4e473e17
commit 03e7f558a4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -7,7 +7,7 @@ FROM openjdk:8-jdk-alpine
MAINTAINER Pterodactyl Software, <support@pterodactyl.io>
RUN apk add --no-cache --update curl ca-certificates openssl git tar bash sqlite \
RUN apk add --no-cache --update curl ca-certificates openssl git tar bash sqlite fontconfig \
&& adduser -D -h /home/container container
USER container