From 7a8b86c01d4becd1be81aa24d76ed1c4f1c96798 Mon Sep 17 00:00:00 2001 From: Ivan FB <128452529+Ivansete-status@users.noreply.github.com> Date: Mon, 8 Apr 2024 11:26:47 +0200 Subject: [PATCH] Dockerfile: workaround to allow creation of docker images (#2569) --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index 1cf659b1d..e3119ff7e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,6 +14,9 @@ RUN apk add --no-cache bash git build-base pcre-dev linux-headers curl jq rust c WORKDIR /app COPY . . +# workaround for alpine issue: https://github.com/alpinelinux/docker-alpine/issues/383 +RUN apk update && apk upgrade + # Ran separately from 'make' to avoid re-doing RUN git submodule update --init --recursive