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 3d752b11b9
commit ba90e3f59b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 0 deletions

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