mirror of
https://github.com/nomic-ai/kompute.git
synced 2026-07-17 09:07:26 +00:00
12 lines
151 B
Docker
12 lines
151 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
|