From 3c7149f22d31525eb7275c39bc012ec41cb81daa Mon Sep 17 00:00:00 2001 From: Koichi Shiraishi Date: Wed, 7 Apr 2021 10:23:15 +0900 Subject: [PATCH] github/workflows: fix install clang-format to use clang-extra-tools pkg --- .github/workflows/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/Dockerfile b/.github/workflows/Dockerfile index 41dfc93..8d6f3dc 100644 --- a/.github/workflows/Dockerfile +++ b/.github/workflows/Dockerfile @@ -2,4 +2,4 @@ # ref: https://hub.docker.com/_/alpine FROM alpine:edge # Install system build dependencies -RUN apk add --no-cache git clang +RUN apk add --no-cache git clang-extra-tools