mirror of
https://github.com/nomic-ai/kompute.git
synced 2026-05-11 00:49:58 +00:00
13 lines
152 B
Docker
13 lines
152 B
Docker
FROM nvidia/vulkan:1.1.121
|
|
|
|
RUN apt update -y
|
|
RUN apt install g++ -y
|
|
|
|
RUN mkdir /workspace
|
|
WORKDIR /workspace
|
|
|
|
COPY . /workspace
|
|
|
|
RUN make build_linux
|
|
|