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 e186a17be6
commit cb6b84e639
Signed by: light7734
GPG key ID: 8C30176798F1A6BA
2 changed files with 6 additions and 3 deletions

View file

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

View file

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