File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
- ARG UBUNTU_VERSION=jammy
1
+ ARG UBUNTU_VERSION=24.04
2
2
3
3
FROM ubuntu:$UBUNTU_VERSION AS build
4
4
@@ -7,7 +7,7 @@ RUN apt update && apt install -y git build-essential cmake wget
7
7
8
8
# Install Vulkan SDK and cURL
9
9
RUN wget -qO - https://packages.lunarg.com/lunarg-signing-key-pub.asc | apt-key add - && \
10
- wget -qO /etc/apt/sources.list.d/lunarg-vulkan-jammy .list https://packages.lunarg.com/vulkan/lunarg-vulkan-jammy .list && \
10
+ wget -qO /etc/apt/sources.list.d/lunarg-vulkan-noble .list https://packages.lunarg.com/vulkan/lunarg-vulkan-noble .list && \
11
11
apt update -y && \
12
12
apt-get install -y vulkan-sdk libcurl4-openssl-dev curl
13
13
@@ -34,7 +34,7 @@ RUN mkdir -p /app/full \
34
34
FROM ubuntu:$UBUNTU_VERSION AS base
35
35
36
36
RUN apt-get update \
37
- && apt-get install -y libgomp1 curl\
37
+ && apt-get install -y libgomp1 curl libvulkan-dev \
38
38
&& apt autoremove -y \
39
39
&& apt clean -y \
40
40
&& rm -rf /tmp/* /var/tmp/* \
You can’t perform that action at this time.
0 commit comments