From fa4d3878bb0d5e55891ae9513bbd4569dabbc60e Mon Sep 17 00:00:00 2001 From: Artanicus Date: Wed, 23 Jun 2021 23:03:41 +0300 Subject: [PATCH] Fix Docker build for alpine:3.14 llvm-config is now deployed as /usr/bin/llvm10-config --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 2ef4f3d..a7a8003 100644 --- a/Dockerfile +++ b/Dockerfile @@ -22,7 +22,7 @@ WORKDIR /app COPY ./requirements.txt /app -ENV LLVM_CONFIG=/usr/bin/llvm-config +ENV LLVM_CONFIG=/usr/bin/llvm10-config RUN apk add --no-cache --virtual .build \ autoconf \