Dockerfile: workaround to allow creation of docker images (#2569)

This commit is contained in:
Ivan FB 2024-04-08 11:26:47 +02:00 committed by GitHub
parent 91a148b852
commit 7a8b86c01d

View File

@ -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