From f1cc5a4bbdd2606f4c269c6d5ea0bf4fecd5209e Mon Sep 17 00:00:00 2001 From: Sebastian Sdorra Date: Fri, 15 Jan 2021 12:43:08 +0100 Subject: [PATCH] Add font ttf-dejavu to oci image Some plugins may require a font to render graphics, such as the markdown-plantuml plugin. --- CHANGELOG.md | 1 + scm-packaging/docker/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4ee60d21b5..5e69f8724a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Option to create a permanent link to a source file ([#1489](https://github.com/scm-manager/scm-manager/pull/1489)) - Add markdown codeblock renderer extension point ([#1492](https://github.com/scm-manager/scm-manager/pull/1492)) - Add Java version to plugin center url ([#1494](https://github.com/scm-manager/scm-manager/pull/1494)) +- Add Font ttf-dejavu to oci image ([#1498](https://github.com/scm-manager/scm-manager/issues/1498)) ## [2.12.0] - 2020-12-17 ### Added diff --git a/scm-packaging/docker/Dockerfile b/scm-packaging/docker/Dockerfile index a69c584d65..92d5511163 100644 --- a/scm-packaging/docker/Dockerfile +++ b/scm-packaging/docker/Dockerfile @@ -29,7 +29,7 @@ ENV CACHE_DIR=/var/cache/scm/work COPY . / RUN set -x \ - && apk add --no-cache mercurial bash ca-certificates \ + && apk add --no-cache ttf-dejavu mercurial bash ca-certificates \ && addgroup -S -g 1000 scm \ && adduser -S -s /bin/false -G scm -h ${SCM_HOME} -D -H -u 1000 scm \ && mkdir -p ${SCM_HOME} ${CACHE_DIR} \