From 61f68434be68be6e1f6a83b72e9c4bd520118701 Mon Sep 17 00:00:00 2001 From: Akihito Koriyama Date: Sat, 15 Jun 2024 00:59:17 +0900 Subject: [PATCH] Remove graphviz from Dockerfile The Dockerfile for the asd-action has been updated to remove the installation of the graphviz package. This change reduces unnecessary dependencies in our Docker environment, specifically for the asd-action. --- docker/asd-action/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/asd-action/Dockerfile b/docker/asd-action/Dockerfile index fdb8e3bd..8cb48ece 100644 --- a/docker/asd-action/Dockerfile +++ b/docker/asd-action/Dockerfile @@ -3,7 +3,7 @@ FROM php:alpine COPY --from=composer /usr/bin/composer /usr/bin/composer RUN apk upgrade --no-cache \ - && apk add --no-cache graphviz ttf-linux-libertine \ + && apk add --no-cache ttf-linux-libertine \ && fc-cache -f \ && RUN COMPOSER_ALLOW_SUPERUSER=1 composer global config allow-plugins.bamarni/composer-bin-plugin true \ && COMPOSER_ALLOW_SUPERUSER=1 composer require koriym/app-state-diagram