devops : add spirv-headers to vulkan dockerfile

This commit is contained in:
Daniel Bevenius 2026-05-12 06:38:12 +02:00
parent 1cb173b18a
commit 4babfd4114
No known key found for this signature in database
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@ FROM ubuntu:24.04 AS build
WORKDIR /app
RUN apt-get update && \
apt-get install -y build-essential wget cmake git libvulkan-dev glslc \
apt-get install -y build-essential wget cmake git libvulkan-dev spirv-headers glslc \
&& rm -rf /var/lib/apt/lists/* /var/cache/apt/archives/*
COPY .. .