Skip to content

Commit a23a471

Browse files
committed
Add font install
1 parent 2dd2199 commit a23a471

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

docker/app-state-diagram/Dockerfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ FROM php:alpine
33
COPY --from=composer /usr/bin/composer /usr/bin/composer
44

55
RUN apk --no-cache upgrade \
6+
&& apk --no-cache add ttf-linux-libertine \
7+
&& fc-cache -f \
68
&& apk --no-cache add graphviz nodejs npm
79

810
RUN COMPOSER_ALLOW_SUPERUSER=1 composer global require koriym/app-state-diagram \

docker/asd-action/Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@ FROM php:alpine
33
COPY --from=composer /usr/bin/composer /usr/bin/composer
44

55
RUN apk upgrade --no-cache \
6-
&& apk add --no-cache graphviz \
6+
&& apk add --no-cache graphviz ttf-linux-libertine \
7+
&& fc-cache -f \
78
&& COMPOSER_ALLOW_SUPERUSER=1 composer require koriym/app-state-diagram
89

910
COPY entrypoint.sh /entrypoint.sh

0 commit comments

Comments
 (0)