Skip to content

Commit

Permalink
Remove graphviz from Dockerfile
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
koriym committed Jun 14, 2024
1 parent eac5498 commit 61f6843
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docker/asd-action/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 61f6843

Please sign in to comment.