ci: fix Dockerfile apk dependencies
Some checks failed
continuous-integration/drone/pr Build is failing

This commit is contained in:
light7734 2025-07-11 16:10:50 +03:30
parent 12c2c99c83
commit 7ff3b41c04
2 changed files with 6 additions and 3 deletions

View file

@ -6,5 +6,4 @@ RUN apk add --no-cache \
findutils \
git \
libc6-compat \
tar \
clang-extra-tools

View file

@ -12,7 +12,8 @@ RUN apk add --no-cache \
py3-pip \
mesa-dev \
mesa-gl \
pkgconf
pkgconf \
clang-extra-tools
RUN pip install --no-cache-dir --break-system-packages conan gitpython \
@ -21,7 +22,10 @@ RUN pip install --no-cache-dir --break-system-packages conan gitpython \
RUN clang --version \
&& conan --version \
&& pip --version \
&& cmake --version
&& cmake --version \
&& clang --version \
&& clang-tidy --version
RUN git clone 'https://git.light7734.com/light7734/light.git' --recursive \
&& cd light \