Skip to content

Commit

Permalink
New font install
Browse files Browse the repository at this point in the history
  • Loading branch information
mrauhala committed Jun 11, 2024
1 parent 53b8903 commit 487dd9b
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion 2.24/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,16 @@ ENV CATALINA_OPTS="-Xms256m -Xmx2g \
-Dorg.geotools.coverage.jaiext.enabled=true"

# persistent / runtime deps
RUN apt-get update && apt-get install -y --no-install-recommends libnetcdf-c++4 curl unzip && rm -r /var/lib/apt/lists/*
RUN apt-get update && apt-get install -y --no-install-recommends libnetcdf-c++4 curl unzip fnt && rm -r /var/lib/apt/lists/*

# Install Google Fonts
RUN \
fnt update \
for FONT in $GEOSERVER_FONTS; \
do \
fnt install ${FONT} ; \
done

RUN \
for FONT in $GEOSERVER_FONTS; \
do \
Expand Down

0 comments on commit 487dd9b

Please sign in to comment.