mirror of
https://github.com/nomic-ai/kompute.git
synced 2026-04-20 06:58:53 +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
|