Skip to content

Commit

Permalink
fixes #137 - add missing font dependency for host display
Browse files Browse the repository at this point in the history
  • Loading branch information
jaymoulin committed Jan 18, 2025
1 parent 32ff3d2 commit e02137d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,12 @@ WORKDIR /opt/JDownloader

CMD ["/opt/JDownloader/daemon.sh"]

RUN if [ "" = "$ISDEB" ]; then apk add --update libstdc++ ffmpeg wget procps shadow && \
RUN if [ "" = "$ISDEB" ]; then apk add --update libstdc++ ffmpeg wget procps shadow fontconfig ttf-dejavu && \
wget -O /opt/JDownloader/JDownloader.jar "http://installer.jdownloader.org/JDownloader.jar?$RANDOM" && \
chmod 777 /opt/JDownloader/ -R && \
apk del wget --purge; \
else apt-get update && \
apt-get install ffmpeg wget procps -y && \
else apt-get update && \
apt-get install ffmpeg wget procps fontconfig fonts-dejavu -y && \
(java -version || apt-get install openjdk-8-jdk) && \
wget -O /opt/JDownloader/JDownloader.jar "http://installer.jdownloader.org/JDownloader.jar?$RANDOM" && \
chmod 777 /opt/JDownloader/ -R && \
Expand Down

0 comments on commit e02137d

Please sign in to comment.