Add a font

This commit is contained in:
Tim Zöller 2026-01-05 11:07:15 +01:00
parent 4b166c0637
commit 1e833d52b6
2 changed files with 33 additions and 4 deletions

View file

@ -22,9 +22,11 @@ FROM eclipse-temurin:17-jre-jammy
WORKDIR /app
# Install curl for healthcheck
# Install curl for healthcheck and emoji fonts for activity image generation
RUN apt-get update && \
apt-get install -y --no-install-recommends curl && \
apt-get install -y --no-install-recommends \
curl \
fonts-noto-color-emoji && \
rm -rf /var/lib/apt/lists/*
# Create non-root user for security